summaryrefslogtreecommitdiff
path: root/test/pending/pos/bug578.scala
blob: 4899fa7f5ffd9820829e5c28118d3749e2ed075c (plain) (blame)
1
2
3
4
5
6
7
object Test {
  val x = Nil
  val x2: Nil = x
  val y = None
  val y2:None = y
  Console.println("Okay")
}