mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
13 lines
181 B
Kotlin
Vendored
13 lines
181 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
|
|
// WITH_RUNTIME
|
|
|
|
@file:JvmName("Util")
|
|
package test
|
|
|
|
fun foo(): String = bar()
|
|
fun bar(): String = qux()
|
|
fun qux(): String = "OK"
|
|
|
|
fun box(): String = foo()
|