FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / init10.C
blobfa238132f3f4b2889dd5be5c4f151b096246e49d
1 int i;
3 struct D {
4   D () {
5     i++;
6   }
7 };
9 struct C {
10   C() {}
11     
12   D d[1];
16 int main ()
18   C c;
20   if (i != 1)
21     return 1;