aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/scope5.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.brendan/scope5.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.brendan/scope5.C21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/scope5.C b/gcc/testsuite/g++.old-deja/g++.brendan/scope5.C
deleted file mode 100644
index 753236948a3..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.brendan/scope5.C
+++ /dev/null
@@ -1,21 +0,0 @@
-// Build don't link:
-// GROUPS passed scoping
-class Integer {
-public:
- int i;
-};
-
-class Type {
- enum Class { ENUM, INTEGER };
-
- class Description {
- public:
-
- };
-
- class Integer: public Description {
- public:
- ::Integer low;
- ::Integer high;
- };
-};