summaryrefslogtreecommitdiff
path: root/test/files/pos/infer2.scala
blob: e065219a80b74072891763236444d07ccf81abfa (plain) (blame)
1
2
3
4
5
6
7
8
package test
class Lst[T]
case class cons[T](x: T, xs: Lst[T]) extends Lst[T]
case class nil[T] extends Lst[T]
object test {
  Console.println(cons(1, nil()))
}