blob: db6513c35bdef76dbb1730e185b941cd0068334e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Header for PCH test exprs.c
// DeclRefExpr
int i = 17;
enum Enum { Enumerator = 18 };
typedef typeof(i) int_decl_ref;
typedef typeof(Enumerator) enum_decl_ref;
// IntegerLiteralExpr
typedef typeof(17) integer_literal;
typedef typeof(17l) long_literal;
// CharacterLiteralExpr
typedef typeof('a') char_literal;
|