Files
kotlin-fork/compiler/testData/diagnostics/tests/controlFlowAnalysis/unmappedArgs.fir.kt
T

6 lines
99 B
Kotlin
Vendored

fun foo(a: Int, b: Int) = a + b
fun bar(i: Int) {
<!INAPPLICABLE_CANDIDATE!>foo<!>(1, 1, i)
}