OSDN Git Service

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