Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / template / ctor2.C
blob1c8d8a65d9b1740a4154fadedc8e6625e8616762
1 // { dg-do run }
3 int i;
5 template <class T>
6 struct S
8   S () { i = 1; }
9 };
11 static S<int> s[1];
13 int main ()
15   if (!i)
16     return 1;