diff --git a/gcc/testsuite/g++.old-deja/g++.benjamin/tem07.C b/gcc/testsuite/g++.old-deja/g++.benjamin/tem07.C new file mode 100644 index 00000000000..953ed90d95c --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.benjamin/tem07.C @@ -0,0 +1,37 @@ + +template +class Foo +{ +public: + Foo(const T&); + Foo(const T&, const T&); +}; + +template +Foo::Foo(const T& t0) +{ +} + +template +Foo::Foo(const T& t0, const T& t1) +{ +} + +template Foo::Foo(const int& t0); + + +int main (void) { + return 0; +} + + + + + + + + + + + +