Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / niklas02.C
blobd47b5d1e1422c7a4efdab3c74a73a85f340711d5
1 // { dg-do assemble  }
3 struct B { int foo (); };
4 int B::foo() { return 37; }
6 template <class A> struct X {
7   void f(int);
8 };
10 template <class A> void X<A>::f (int jj)
13 X<int> x;
15 void xxx () { x.f (1); }