[clang][NFC] simplify the unset check in `ParseLabeledStatement` (#117430)
[llvm-project.git] / clang / test / Lexer / pragma-mark.c
blobe58b2267ddbcebd45cc6497176cf135b122eeee8
1 // RUN: %clang_cc1 %s -fsyntax-only -verify
2 // expected-no-diagnostics
4 // Lexer diagnostics shouldn't be included in #pragma mark.
5 #pragma mark Mike's world
6 _Pragma("mark foo ' bar")
8 #define X(S) _Pragma(S)
9 X("mark foo ' bar")
11 int i;