e0b6f12737
AbstractCompileKotlinAgainstMultifileKotlinTest is broken in this commit; will be fixed later
11 lines
109 B
Kotlin
Vendored
11 lines
109 B
Kotlin
Vendored
// FILE: 1.kt
|
|
|
|
fun box() = foo()
|
|
|
|
// FILE: 2.kt
|
|
|
|
private val a = "OK"
|
|
fun foo() : String {
|
|
return "${a}"
|
|
}
|