blob: 36660cc0a49edb045ef975f341c6e255f356094b [file] [log] [blame]
Douglas Gregor0b748912009-04-14 21:18:50 +00001// Header for PCH test exprs.c
2
3// DeclRefExpr
4int i = 17;
5enum Enum { Enumerator = 18 };
6typedef typeof(i) int_decl_ref;
7typedef typeof(Enumerator) enum_decl_ref;
8
Douglas Gregor17fc2232009-04-14 21:55:33 +00009// IntegerLiteral
Douglas Gregor0b748912009-04-14 21:18:50 +000010typedef typeof(17) integer_literal;
11typedef typeof(17l) long_literal;
12
Douglas Gregor17fc2232009-04-14 21:55:33 +000013// FloatingLiteral
14typedef typeof(42.5) floating_literal;
15
16// CharacterLiteral
Douglas Gregor0b748912009-04-14 21:18:50 +000017typedef typeof('a') char_literal;
Douglas Gregor17fc2232009-04-14 21:55:33 +000018