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

12 lines
114 B
Plaintext

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