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

5 lines
63 B
Kotlin
Vendored

fun f(): Int {
var i = 17
{ var i = 18 }
return i
}