2018-02-09 Sebastian Perta <sebastian.perta@renesas.com>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.gb / scope02.C
blobfbcd3a3f00a33078bb03613f0c8087472684d2b8
1 // { dg-do assemble  }
2 // GROUPS passed gb scope
3 struct c {
4   typedef int t;
5   struct d {
6     void foo (t &);
7   };
8 };
10 void c::d::foo (t & x) { }