13 lines · c
1// RUN: %clang_cc1 %s -fsyntax-only -verify2// expected-no-diagnostics3 4// Lexer diagnostics shouldn't be included in #pragma mark.5#pragma mark Mike's world6_Pragma("mark foo ' bar")7 8#define X(S) _Pragma(S)9X("mark foo ' bar")10 11int i;12 13