summaryrefslogtreecommitdiff
path: root/test/files/pos/t4243.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t4243.scala')
-rw-r--r--test/files/pos/t4243.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/files/pos/t4243.scala b/test/files/pos/t4243.scala
index 5fa8665918..e6c66faff0 100644
--- a/test/files/pos/t4243.scala
+++ b/test/files/pos/t4243.scala
@@ -3,16 +3,16 @@
object wrap {
-
+
trait DomainLike[@specialized(Int) A, +This <: Domain[A]]
-
+
trait Domain[@specialized(Int) B]
extends DomainLike[B, Domain[B]]
-
+
trait IterableDomainLike[@specialized(Int) C, +This <: IterableDomain[C]]
extends DomainLike[C, This]
-
+
trait IterableDomain[@specialized(Int) D]
extends Domain[D] with IterableDomainLike[D, IterableDomain[D]]
-
+
}