2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 %s -fsyntax-only -verify
|
2007-12-20 03:38:36 +08: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;
|
|
|
|
|