summaryrefslogtreecommitdiff
path: root/test/files/pos/t4365/b_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t4365/b_1.scala')
-rw-r--r--test/files/pos/t4365/b_1.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/files/pos/t4365/b_1.scala b/test/files/pos/t4365/b_1.scala
index e5b5687185..e1423813f1 100644
--- a/test/files/pos/t4365/b_1.scala
+++ b/test/files/pos/t4365/b_1.scala
@@ -1,9 +1,11 @@
import scala.collection._
+trait GenSeqView0[+A, +Coll]
+
trait GenSeqViewLike[+A,
+Coll,
- +This <: GenSeqView[A, Coll] with GenSeqViewLike[A, Coll, This]]
-extends GenSeq[A] {
+ +This <: GenSeqView0[A, Coll] with GenSeqViewLike[A, Coll, Nothing]]
+extends GenSeq[A] {
self =>
trait Transformed[+B] {