summaryrefslogtreecommitdiffstats
path: root/test/Preprocessor/print_line_track.c
blob: fb2ccf270e242f7c746290b4f2a28c3c9fed3d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 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__)