summaryrefslogtreecommitdiff
path: root/test/files/pos/scoping2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/scoping2.scala')
-rw-r--r--test/files/pos/scoping2.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/files/pos/scoping2.scala b/test/files/pos/scoping2.scala
deleted file mode 100644
index 39f3ef5f0e..0000000000
--- a/test/files/pos/scoping2.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-object That {
- trait A {
- type T <: I;
- trait I {}
- }
- trait B {
- type T <: J;
- trait J {}
- }
- trait C extends A with B {
- type T <: I with J;
- }
-}
-