1 // RUN: %clang_cc1 %s -fsyntax-only -verify 2 3 // Lexer diagnostics shouldn't be included in #pragma mark. 4 #pragma mark Mike's world 5 _Pragma("mark foo ' bar") 6 7 #define X(S) _Pragma(S) 8 X("mark foo ' bar") 9 10 int i; 11 12