summaryrefslogtreecommitdiff
path: root/test/files/neg/t0345.scala
blob: f3652c183b6bf7f2db596428852cbfacd2349dd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
object Lizt {
    val empty = new Lizt[Nothing] {
        def cons[A](a : A) {}
    }
}

trait Lizt[A] {
    def cons(a : A) : Unit
}
class Test {
    abstract class C[A] {}
    val c = new C[Int] {
        def f[A](x: A) {}
    }
 }