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

7 lines
74 B
Kotlin
Vendored

fun ff(): Int {
var i = 1
{
val i = 2
}
return i
}