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

7 lines
90 B
Kotlin
Vendored

fun f(i: Int) {
for (j in 1..100) {
{
var i = 12
}
}
}