repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang][NFC] simplify the unset check in `ParseLabeledStatement` (#117430)
[llvm-project.git]
/
clang
/
test
/
Lexer
/
pragma-mark.c
blob
e58b2267ddbcebd45cc6497176cf135b122eeee8
1
// RUN: %clang_cc1 %s -fsyntax-only -verify
2
// expected-no-diagnostics
3
4
// Lexer diagnostics shouldn't be included in #pragma mark.
5
#pragma mark Mike
's world
6
_Pragma("mark foo '
bar
")
7
8
#define X(S) _Pragma(S)
9
X("
mark foo
' bar")
10
11
int i;
12