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

12 lines
114 B
Kotlin
Vendored

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