From 98e48780cff38dc8ab91a5e445c462da7b4a29b9 Mon Sep 17 00:00:00 2001 From: Benjamin Kosnik Date: Tue, 29 Sep 1998 16:13:35 +0000 Subject: =?UTF-8?q?=EF=BF=BD=20new=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From-SVN: r22642 --- gcc/testsuite/g++.old-deja/g++.benjamin/tem07.C | 37 +++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 gcc/testsuite/g++.old-deja/g++.benjamin/tem07.C (limited to 'gcc') 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 0000000..953ed90 --- /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; +} + + + + + + + + + + + + -- cgit v1.1