Files
kotlin-fork/backend.native/tests/external/codegen/box/regressions/kt1528.kt
T
2017-03-13 15:31:46 +03:00

11 lines
109 B
Kotlin

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