Files
kotlin-fork/compiler/testData/codegen/box/constants/privateConst.kt
T

7 lines
106 B
Kotlin
Vendored

fun <T> eval(fn: () -> T) = fn()
private const val z = "OK";
fun box(): String {
return eval { z }
}