aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/ns7.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.ns/ns7.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.ns/ns7.C26
1 files changed, 0 insertions, 26 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.ns/ns7.C b/gcc/testsuite/g++.old-deja/g++.ns/ns7.C
deleted file mode 100644
index 9afc97c410f..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.ns/ns7.C
+++ /dev/null
@@ -1,26 +0,0 @@
-// Build don't link:
-namespace A{
- struct X{
- int i;
- X(){}
- X(int j);
- void operator=(const X&);
- virtual ~X(){}
- };
- void X::operator=(const X&o)
- {
- i=o.i;
- }
-}
-
-A::X::X(int j):i(j){}
-
-namespace A{
- struct Y:public X{
- int j;
- Y(int,int);
- };
-}
-
-A::Y::Y(int a,int b):X(a),j(b)
-{}