Files
kotlin-fork/compiler/testData/codegen/box/properties/initializerOfConstValWithConstExpr.kt
T
2023-04-04 12:35:54 +00:00

13 lines
194 B
Kotlin
Vendored

// MODULE: lib
// FILE: lib.kt
const val four = 2 + 2
// MODULE: main(lib)
// FILE: main.kt
fun box(): String {
if (four == 4)
return "OK"
else
return four.toString()
}