Files
kotlin/compiler/testData/codegen/box/constants/privateConst.kt
2018-08-09 14:22:50 +03:00

7 lines
81 B
Kotlin
Vendored

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