3d8d92c7d3
- test data files renamed from *.jet to *.kt
12 lines
114 B
Kotlin
12 lines
114 B
Kotlin
class RedefinePropertyInFor() {
|
|
|
|
var i = 1
|
|
|
|
fun ff() {
|
|
for (i in 0..10) {
|
|
}
|
|
}
|
|
|
|
}
|
|
|