26 lines
385 B
Kotlin
Vendored
26 lines
385 B
Kotlin
Vendored
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS
|
|
|
|
// WITH_RUNTIME
|
|
// FILE: 1/part.kt
|
|
|
|
@file:JvmName("Foo")
|
|
@file:JvmMultifileClass
|
|
package test
|
|
|
|
fun foo(): String = "O"
|
|
|
|
// FILE: 2/part.kt
|
|
|
|
@file:JvmName("Bar")
|
|
@file:JvmMultifileClass
|
|
package test
|
|
|
|
fun bar(): String = "K"
|
|
|
|
// FILE: box.kt
|
|
|
|
package test
|
|
|
|
fun box(): String = foo() + bar()
|