11 lines · cpp
1// RUN: not %clang_cc1 -fsyntax-only %s 2>&1 | FileCheck -strict-whitespace %s2// CHECK: {{ERR_DNS_SERVER_REQUIRES_TCP$}}3 4// http://llvm.org/PR126745#define NET_ERROR(label, value) ERR_ ## label = value,6 7NET_ERROR(DNS_SERVER_REQUIRES_TCP, -801)8 9#undef NET_ERROR10 11