Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f155dbf901b77f0faa90a48670c0bdae7fbdea2d
/
.
/
test
/
Preprocessor
/
builtin_line.c
blob: 06a2ac20d04cfa40254d38a39769de404d1cc759 [
file
] [
log
] [
blame
]
// RUN: clang-cc %s -E | grep "^ 4"
#define
FOO __LINE__
FOO
// PR3579 - This should expand to the __LINE__ of the ')' not of the X.
// RUN: clang-cc %s -E | grep "^A 13"
#define
X
()
__LINE__
A X
(
)