1 struct B {
gB2   void g() { }
3 };
4 
5 struct A {
fA6   void f() {
7     B &b = b;
8     b.g();
9   }
10 };
11 
main(void)12 int main(void) { }
13