mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
12 lines
114 B
Kotlin
12 lines
114 B
Kotlin
class RedefinePropertyInFor() {
|
|
|
|
var i = 1
|
|
|
|
fun ff() {
|
|
for (i in 0..10) {
|
|
}
|
|
}
|
|
|
|
}
|
|
|