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