18 lines · c
1// Header for PCH test cxx-reference.cpp2 3typedef char (&LR);4typedef char (&&RR);5 6char c;7 8char &lr = c;9char &&rr = 'c';10LR &lrlr = c;11LR &&rrlr = c;12RR &lrrr = c;13RR &&rrrr = 'c';14 15struct S {16 const int &x = 1; // LifetimeExtendedTemporary inside struct17};18