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

13 lines
131 B
Kotlin
Vendored

// FIR_IDENTICAL
class RedefinePropertyInFor() {
var i = 1
fun ff() {
for (i in 0..10) {
}
}
}