aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.gb/scope04.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.gb/scope04.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.gb/scope04.C15
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.gb/scope04.C b/gcc/testsuite/g++.old-deja/g++.gb/scope04.C
deleted file mode 100644
index f63775bdb49..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.gb/scope04.C
+++ /dev/null
@@ -1,15 +0,0 @@
-// Build don't link:
-// GROUPS passed gb scope
-struct a {
- struct c {
- struct d {
- static int foo (int);
- };
- };
-
- struct b {
- int foo (int x) { return c::d::foo (x); }
- };
-};
-
-int a::c::d::foo (int) { return 0; }