netbsd/external/bsd/llvm/dist/clang/test/PCH/cxx-reference.h
2014-01-15 10:53:42 +01:00

14 lines
184 B
C

// Header for PCH test cxx-reference.cpp
typedef char (&LR);
typedef char (&&RR);
char c;
char &lr = c;
char &&rr = 'c';
LR &lrlr = c;
LR &&rrlr = c;
RR &lrrr = c;
RR &&rrrr = 'c';