Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / crash52.C
blobf2c31672d3c4d73df2377419a90f68c710d5ca7f
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 template <class T>
5 struct S1
7   template <class U>
8   struct S2
9   { 
10     S2(U);
11   };
13   template <class U>
14   void f(U u)
15     {
16       S2<U> s2u(u);
17     }
20 void g()
22   S1<int> s1;
23   s1.f(3.0);