Files
kotlin-fork/compiler/testData/diagnostics/tests/shadowing/ShadowParameterInNestedBlockInFor.fir.kt
T
2021-03-30 09:57:56 +03:00

9 lines
169 B
Kotlin
Vendored

// !DIAGNOSTICS: +UNUSED_PARAMETER +UNUSED_LAMBDA_EXPRESSION +UNUSED_VARIABLE
fun f(i: Int) {
for (j in 1..100) {
{
var i = 12
}
}
}