Files
kotlin-fork/compiler/testData/diagnostics/tests/shadowing/ShadowParameterInNestedBlockInFor.jet
T
2012-01-27 18:32:55 +04:00

7 lines
164 B
Plaintext

fun f(<!UNUSED_PARAMETER!>i<!>: Int) {
for (j in 1..100) {
<!UNUSED_FUNCTION_LITERAL!>{
var <!NAME_SHADOWING!>i<!> = 12
}<!>
}
}