3d8d92c7d3
- test data files renamed from *.jet to *.kt
9 lines
170 B
Kotlin
9 lines
170 B
Kotlin
// http://youtrack.jetbrains.net/issue/KT-552
|
|
// KT-552 For variable unresolved if loop body is not block
|
|
|
|
fun ff() {
|
|
var i = 1
|
|
for (j in 1..10)
|
|
i += j
|
|
}
|