xref: /minix3/external/bsd/llvm/dist/clang/test/PCH/pch__VA_ARGS__.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // Test with pch.
2 // RUN: %clang_cc1 -emit-pch -o %t %S/pch__VA_ARGS__.h
3 // RUN: %clang_cc1 -include-pch %t -fsyntax-only -Weverything %s 2>&1 | FileCheck %s
4 
5 #define mylog(...) printf(__VA_ARGS__)
6 // CHECK-NOT: warning: __VA_ARGS__ can only appear in the expansion of a C99 variadic macro
7