Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / local3.C
blob6c0fe4573e05ef6749eb9e6cad02ee3dcf61a185
1 // { dg-do run  }
2 extern "C" void abort();
4 template <class T>
5 void f(T)
7   int j;
9   j = 6;
11   struct S {
12     int i;
13   };
15   S s;
17   s.i = j;
19   if (s.i != 6)
20     abort();
24 int main()
26   f(7);