Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/WrongTraceInCallResolver.fir.kt
T

10 lines
175 B
Kotlin
Vendored

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