2009-12-15 23:14:24 +03:00
|
|
|
// RUN: %clang_cc1 %s -fsyntax-only -verify
|
2007-12-19 22:38:36 +03:00
|
|
|
|
|
|
|
// Lexer diagnostics shouldn't be included in #pragma mark.
|
|
|
|
#pragma mark Mike's world
|
|
|
|
_Pragma("mark foo ' bar")
|
|
|
|
|
|
|
|
#define X(S) _Pragma(S)
|
|
|
|
X("mark foo ' bar")
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|