2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / t28.C
blob64b1a56e8e704c5991fe0ba6939c8f0c07071733
1 // { dg-do assemble  }
3 template <class X> class B;
4 template <class X> int f (B<X> b) { return 37; }
5 template <class Y> class B { public: Y y; B() { y = 1; } };
7 int foo () {
8   B<double> bd;
9   return f(bd);