summaryrefslogtreecommitdiff
path: root/test/files/run/lub-visibility.check
blob: 61dca979a147a855a9f88635fc2d5a83410c47e1 (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 Serializable] = List(List(), Vector())

scala> :quit