summaryrefslogtreecommitdiff
path: root/tests/parser/test-007.cli
diff options
context:
space:
mode:
Diffstat (limited to 'tests/parser/test-007.cli')
-rw-r--r--tests/parser/test-007.cli30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/parser/test-007.cli b/tests/parser/test-007.cli
deleted file mode 100644
index b890a34..0000000
--- a/tests/parser/test-007.cli
+++ /dev/null
@@ -1,30 +0,0 @@
-// base class lookup
-//
-
-include "test-007-base.cli";
-
-class c1 {};
-class c2: c1 {};
-class c3: ::c1 {};
-
-namespace n1
-{
- class c4 {};
- class c5: c4 {};
- class c6: n1::c4 {};
- class c7: ::n1::c4 {};
-
- class c8: b2 {}; // From included.
- class c9: i1::b3 {}; // From included.
-
- namespace i1
- {
- class c10: c4 {}; // Outer scope.
- class c11: b3 {}; // From included.
- class c12: b2 {}; // Outer scope from included.
- class c4: n1::c4 {}; // Qualified name from outer scope.
- }
-}
-
-class c13: n1::c4 {};
-class c14: ::n1::c4 {};