authorBenjamin Kosnik <bkoz@gcc.gnu.org>
Fri, 4 Dec 1998 19:12:58 +0000 (19:12 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Fri, 4 Dec 1998 19:12:58 +0000 (19:12 +0000)
nortel regressions since 97r1

From-SVN: r24096

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

diff --git a/gcc/testsuite/g++.old-deja/g++.benjamin/14139.C b/gcc/testsuite/g++.old-deja/g++.benjamin/14139.C
new file mode 100644 (file)
index 0000000..dc0c569
--- /dev/null
@@ -0,0 +1,22 @@
+// 981203 bkoz
+// g++/14309
+// test for global functions, mf's, and templatized mf's.
+// Build don't link: 
+
+static int fooe_1(void) { return 5; }
+static int fooe_2(int x = fooe_1()) { return x; }
+
+struct antigua {
+  static int& foo_1();
+  static int foo_2(int& x = antigua::foo_1());
+  static int foo_3(int x = fooe_2());
+};
+
+template <typename T>
+  struct jamacia {
+    static int& foo_1();
+    static int foo_2(int& x = antigua::foo_1());
+    static int foo_3(int x = fooe_2());
+  };
+
+template class jamacia<int>;
diff --git a/gcc/testsuite/g++.old-deja/g++.benjamin/17922.C b/gcc/testsuite/g++.old-deja/g++.benjamin/17922.C
new file mode 100644 (file)
index 0000000..4717092
--- /dev/null
@@ -0,0 +1,19 @@
+// 981204 bkoz
+// g++/17922
+// Build don't link:
+
+class base { };
+
+struct derived : public base   {
+   derived (const derived&);
+   derived (const base&);
+};
+
+class tahiti {
+public: 
+   static void mf (derived);
+};
+
+void foo (const derived aaa) {
+   tahiti::mf(aaa);
+}