Files
kotlin-fork/compiler/testData/diagnostics/tests/shadowing/ShadowVariableInNestedClosureParam.fir.kt
T

6 lines
65 B
Kotlin
Vendored

fun ff(): Int {
var i = 1
{ i: Int -> i }
return i
}