Fix typo in test case
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / array2.C
blob255d8cce2d389e6aa0ee638a63ffb9ca3612304e
1 int i;
3 struct S {
4   S () {
5     ++i;
6   };
8   S (int) {
9   };
12 int main()
14   S s[3][3] = { 2 };
16   if (i != 8)
17     return 1;