2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / t20.C
blob2e985d806b0234bd0621351e3c0ab62f9db327d4
1 // { dg-do assemble  }
3 template <class X> class A {
4 public:
5   X aaa;
6   int foo();
7 };
9 template <class X> A<X> f(X);
11 void frep() {
12   int x;
13   x = f(6.4).foo();