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