Files
kotlin/compiler/testData/codegen/boxMultiFile/callMultifileClassMemberFromOtherPackage.kt
Alexander Udalov e0b6f12737 Migrate boxMultiFile and boxMultifileClass tests to new multi-file tests
AbstractCompileKotlinAgainstMultifileKotlinTest is broken in this commit; will
be fixed later
2016-02-27 15:40:03 +03:00

23 lines
260 B
Kotlin
Vendored

// FILE: box.kt
package test
import b.bar
fun box(): String = bar()
// FILE: caller.kt
package b
import a.foo
fun bar(): String = foo()
// FILE: multifileClass.kt
@file:[JvmName("MultifileClass") JvmMultifileClass]
package a
fun foo(): String = "OK"