2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / other / pr77626.C
blobd57551cbf6eef5b7734c00b2429c97497c9f8477
1 // PR c++/77626
2 // { dg-do compile }
4 struct B;                       // { dg-message "forward declaration of" }
5 struct A { struct B b; };       // { dg-error "has incomplete type" }
6 void bar (int);
8 void
9 foo ()
11   A a;
12   bar ((int &) a);