Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame^] | 1 | // Header for PCH test exprs.c |
2 | |||||
3 | // DeclRefExpr | ||||
4 | int i = 17; | ||||
5 | enum Enum { Enumerator = 18 }; | ||||
6 | typedef typeof(i) int_decl_ref; | ||||
7 | typedef typeof(Enumerator) enum_decl_ref; | ||||
8 | |||||
9 | // IntegerLiteralExpr | ||||
10 | typedef typeof(17) integer_literal; | ||||
11 | typedef typeof(17l) long_literal; | ||||
12 | |||||
13 | // CharacterLiteralExpr | ||||
14 | typedef typeof('a') char_literal; |