Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
c1fc3ec87807a35e2e12bb41a079b10c9db1350a
/
.
/
clang
/
test
/
Preprocessor
/
builtin_line.c
blob: db01e47995a81e489698cc4e394c36eadd2c814b [
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
(
)