Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / crash37.C
blobc07ccd591515476e284c92722334668c5beac32f
1 // { dg-do assemble  }
2 // Origin: Jens Maurer <jmaurer@menuett.rhein-main.de>
4 template<class T, void (T::*f)(int)>
5 class C { };
7 template<class T>
8 C<T, &T::output> call(T& obj)
9 {       return C<T, &T::output>();
12 class Test {
13 public:
14         void output(int);
17 void sub()
19         Test t;
20         call(t);