14 lines
122 B
Kotlin
Vendored
14 lines
122 B
Kotlin
Vendored
package source
|
|
|
|
import target.foo
|
|
|
|
fun sourcePackFun(){}
|
|
|
|
object SourceObject {
|
|
|
|
|
|
fun other() {
|
|
foo()
|
|
}
|
|
}
|