1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef GCC_TEST_LAUNDER6_H #define GCC_TEST_LAUNDER6_H struct A { int& x; }; struct B { A a; }; void f(B& b); #endif