aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t7928.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t7928.scala')
-rw-r--r--tests/untried/pos/t7928.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/untried/pos/t7928.scala b/tests/untried/pos/t7928.scala
deleted file mode 100644
index d9e29935b..000000000
--- a/tests/untried/pos/t7928.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-trait OuterTrait {
- trait InnerTrait {
- type Element
- type Collection <: Iterable[Inner.Element]
- }
-
- val Inner: InnerTrait
-
-}
-
-object OuterObject extends OuterTrait {
- object Inner extends InnerTrait {
- type Element = String
- override type Collection = Seq[Inner.Element]
- }
-}