aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.benjamin/14139.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.benjamin/14139.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.benjamin/14139.C22
1 files changed, 22 insertions, 0 deletions
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
index 00000000000..dc0c5695f15
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.benjamin/14139.C
@@ -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>;