Daily bump.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / init10.C
blob7fd07fa895591eda49680870a67ee14aa52b88fa
1 // { dg-do run  }
2 int i;
4 struct D {
5   D () {
6     i++;
7   }
8 };
10 struct C {
11   C() {}
12     
13   D d[1];
17 int main ()
19   C c;
21   if (i != 1)
22     return 1;