authorBenjamin Kosnik <bkoz@gcc.gnu.org>
Tue, 29 Sep 1998 16:13:35 +0000 (16:13 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Tue, 29 Sep 1998 16:13:35 +0000 (16:13 +0000)
new test

From-SVN: r22642

gcc/testsuite/g++.old-deja/g++.benjamin/tem07.C [new file with mode: 0644]

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 (file)
index 0000000..953ed90
--- /dev/null
@@ -0,0 +1,37 @@
+
+template <class T>
+class Foo
+{
+public:
+    Foo(const T&);
+    Foo(const T&, const T&);
+};
+
+template <class T>
+Foo<T>::Foo(const T& t0)
+{
+}
+
+template <class T>
+Foo<T>::Foo(const T& t0, const T& t1)
+{
+}
+
+template Foo<int>::Foo(const int& t0);
+
+
+int main (void) {
+  return 0;
+}
+
+
+
+
+
+
+
+
+
+
+
+