OSDN Git Service

fix
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / array2.C
1 int i;
2
3 struct S {
4   S () {
5     ++i;
6   };
7
8   S (int) {
9   };
10 };
11
12 int main()
13 {
14   S s[3][3] = { 2 };
15
16   if (i != 8)
17     return 1;
18 }