Files
kotlin-fork/compiler/testData/codegen/box/ir/fileClassInitializers.kt
T
2018-08-02 10:38:06 +02:00

13 lines
181 B
Kotlin
Vendored

//WITH_RUNTIME
//IGNORE_BACKEND: JS_IR
import kotlin.test.assertEquals
val x = 1
val y = x + 1
fun box(): String {
assertEquals(x, 1)
assertEquals(y, 2)
return "OK"
}