12 lines
114 B
Plaintext
12 lines
114 B
Plaintext
class RedefinePropertyInFor() {
|
|
|
|
var i = 1
|
|
|
|
fun ff() {
|
|
for (i in 0..10) {
|
|
}
|
|
}
|
|
|
|
}
|
|
|