Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt1528.kt
T

11 lines
109 B
Kotlin
Vendored

// FILE: 1.kt
fun box() = foo()
// FILE: 2.kt
private val a = "OK"
fun foo() : String {
return "${a}"
}