You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
308 B
18 lines
308 B
/* RUN: %clang_cc1 -E %s | grep 'a 3'
|
|
* RUN: %clang_cc1 -E %s | grep 'b 16'
|
|
* RUN: %clang_cc1 -E -P %s | grep 'a 3'
|
|
* RUN: %clang_cc1 -E -P %s | grep 'b 16'
|
|
* RUN: %clang_cc1 -E %s | not grep '# 0 '
|
|
* RUN: %clang_cc1 -E -P %s | count 4
|
|
* PR1848 PR3437 PR7360
|
|
*/
|
|
|
|
#define t(x) x
|
|
|
|
t(a
|
|
3)
|
|
|
|
t(b
|
|
__LINE__)
|
|
|