Files
kotlin-fork/compiler/testData/codegen/box/objects/kt2663_3.kt
T
Steven Schäfer efb938a7c8 (Un)mute tests
2019-07-31 11:18:44 +02:00

9 lines
125 B
Kotlin
Vendored

fun box() : String {
var a = 1
object {
val t = run { a++ }
}
return if (a == 2) "OK" else "fail"
}