aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/m8.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/m8.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/m8.C22
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/m8.C b/gcc/testsuite/g++.old-deja/g++.pt/m8.C
deleted file mode 100644
index 22d01441bb1..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/m8.C
+++ /dev/null
@@ -1,22 +0,0 @@
-// Build don't link:
-
-class A {
- int a;
- public:
- A (int aa = 3);
-};
-
-class B {
- class A {
- public:
- A (int, int);
- };
- A aa;
- public:
- B (int);
-};
-
-extern void foo();
-B::B (int z) : aa (1, z) {
- foo ();
-}