Files
kotlin-fork/compiler/testData/codegen/box/compileKotlinAgainstKotlin/internalWithOtherModuleName.kt
T
2022-08-01 08:57:16 +00:00

16 lines
209 B
Kotlin
Vendored

// MODULE: lib
// FILE: A.kt
package a
class Box(val value: String) {
internal fun result(): String = value
}
// MODULE: main()(lib)
// FILE: B.kt
fun box(): String {
return a.Box("OK").result()
}