xref: /minix3/external/bsd/llvm/dist/clang/test/Lexer/pragma-mark.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 %s -fsyntax-only -verify
2 // expected-no-diagnostics
3 
4 // Lexer diagnostics shouldn't be included in #pragma mark.
5 #pragma mark Mike's world
6 _Pragma("mark foo ' bar")
7 
8 #define X(S) _Pragma(S)
9 X("mark foo ' bar")
10 
11 int i;
12 
13