Files
kotlin/compiler/testData/diagnostics/tests/shadowing/ShadowVariableInNestedClosureParam.kt

6 lines
96 B
Kotlin
Vendored

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