| Chris Lattner | 2243449 | 2007-12-19 19:38:36 +0000 | [diff] [blame] | 1 | // RUN: clang %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 | |||||