Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / crash19.C
blob9e159613da1a577399050ede1e3724d6a84760aa
1 // { dg-do assemble  }
3 template <int I>
4 void f()
6   class C { public: int c; };
8   struct S {
9     void g() {
10       C e;
11       e.c = 3;
12     };
13   };
15   S s;
16   s.g();
19 template void f<7>();