2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.benjamin / tem07.C
blob2b304b464f2e2a72768dd483e299fd4c44b8181d
1 // { dg-do run  }
3 template <class T>
4 class Foo
6 public:
7     Foo(const T&);
8     Foo(const T&, const T&);
9 };
11 template <class T>
12 Foo<T>::Foo(const T& t0)
16 template <class T>
17 Foo<T>::Foo(const T& t0, const T& t1)
21 template Foo<int>::Foo(const int& t0);
24 int main (void) {
25   return 0;