Files
kotlin-fork/compiler/testData/checker/regression/WrongTraceInCallResolver.jet
T
2011-10-20 16:21:18 +02:00

9 lines
160 B
Plaintext

open class Foo {}
open class Bar {}
fun <T : Bar, T1> foo(x : Int) {}
fun <T1, T : Foo> foo(x : Long) {}
fun f(): Unit {
foo<<error>Int</error>, Int>(1)
}