Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/internalWithOtherModuleName.kt
T
2020-10-02 08:57:55 +03:00

16 lines
227 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// IGNORE_BACKEND: NATIVE
// FILE: A.kt
package a
class Box(val value: String) {
internal fun result(): String = value
}
// FILE: B.kt
fun box(): String {
return a.Box("OK").result()
}