OSDN Git Service

* decl.c (compute_array_index_type): Don't try to do anything with
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / m9.C
1 // Build don't link: 
2
3 struct A { A() { a = 1; } int a; };
4 struct Q {
5   struct A { A() { a = 2; } int a; };
6   struct R {
7      struct A { A() { a = 3; } int a; };
8      A aaz;
9   };
10   R rrr;
11   A aay;
12 }
13 ;
14
15 Q qqq;
16 A aav;