Files
kotlin-fork/idea/testData/checker/regression/WrongTraceInCallResolver.kt
T
2012-11-12 19:54:22 +04:00

9 lines
198 B
Kotlin

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