15 lines
231 B
Kotlin
Vendored
15 lines
231 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// TARGET_BACKEND: JVM
|
|
|
|
// WITH_RUNTIME
|
|
|
|
@file:JvmName("Test")
|
|
@file:JvmMultifileClass
|
|
package test
|
|
|
|
fun foo(): String = bar()
|
|
fun bar(): String = qux()
|
|
fun qux(): String = "OK"
|
|
|
|
fun box(): String = foo()
|