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