Nico Weber | 40d8e97 | 2012-04-26 21:39:46 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only %s 2>&1 | FileCheck -strict-whitespace %s |
2 | // CHECK: {{ERR_DNS_SERVER_REQUIRES_TCP$}} | ||||
3 | |||||
4 | // http://llvm.org/PR12674 | ||||
5 | #define NET_ERROR(label, value) ERR_ ## label = value, | ||||
6 | |||||
7 | NET_ERROR(DNS_SERVER_REQUIRES_TCP, -801) | ||||
8 | |||||
9 | #undef NET_ERROR | ||||
10 |