blob: 60b1f2e3c7e981fd6ae7a6db82a43f3086f31416 [file] [log] [blame]
// 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;
// IntegerLiteral
typedef typeof(17) integer_literal;
typedef typeof(17l) long_literal;
// FloatingLiteral and ParenExpr
typedef typeof((42.5)) floating_literal;
// CharacterLiteral
typedef typeof('a') char_literal;
// BinaryOperator
typedef typeof(i + Enumerator) add_result;
// CStyleCastExpr
typedef typeof((void *)0) void_ptr;