Files
kotlin-fork/compiler/testData/codegen/box/constants/privateConst.kt
T
2018-06-28 12:26:41 +02:00

8 lines
107 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
private const val z = "OK";
fun box(): String {
return {
z
}()
}