summaryrefslogtreecommitdiff
path: root/test/Lexer/counter.c
blob: 044570f88869bb56356ce5e365f0618b5f4f5fd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// __COUNTER__ support: rdar://4329310
// RUN: clang -E %s > %t

#define PASTE2(x,y) x##y
#define PASTE1(x,y) PASTE2(x,y)
#define UNIQUE(x) PASTE1(x,__COUNTER__)

// RUN: grep "A: 0" %t
A: __COUNTER__

// RUN: grep "B: foo1" %t
B: UNIQUE(foo);
// RUN: grep "C: foo2" %t
C: UNIQUE(foo);
// RUN: grep "D: 3" %t
D: __COUNTER__