1465418c2b
#KT-7151 Fixed
11 lines
149 B
Kotlin
Vendored
11 lines
149 B
Kotlin
Vendored
class X {
|
|
public var length: Int = 5
|
|
}
|
|
|
|
class C {
|
|
fun foo(x: X) {
|
|
for (i in 0..x.length - 1) {
|
|
print(i)
|
|
}
|
|
}
|
|
} |