summaryrefslogtreecommitdiff
path: root/test/files/run/lub-visibility.check
blob: 757f0f59171cc1e6b2d584b0e937622c2e49347b (plain) (blame)
1
2
3
4
5
6
7
8
9
scala> // should infer List[scala.collection.immutable.Seq[Nothing]]

scala> // but reverted that for SI-5534.

scala> val x = List(List(), Vector())
x: List[scala.collection.immutable.Seq[Nothing] with scala.collection.AbstractSeq[Nothing] with java.io.Serializable] = List(List(), Vector())

scala> :quit