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-tidy][modernize-use-starts-ends-with] Fix operator rewriting false negative...
[llvm-project.git]
/
clang
/
test
/
Lexer
/
token-concat.c
blob
0a2cbeef6fd0824996f623ed00b3ce050a372e70
1
// RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
2
3
IDENT
.2
4
// CHECK: {{^}}IDENT.2{{$}}
5
6
7
// PR4395
8
#define X .*
9
X
10
// CHECK: {{^}}.*{{$}}
11