Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/platformNames/multifileClass.kt
T
2015-09-09 19:08:18 +03:00

10 lines
267 B
Kotlin
Vendored

// NB this multifile class should be called "TestPackage" due to the way codegen box tests work.
@file:JvmName("TestPackage")
@file:JvmMultifileClass
package test
fun foo(): String = bar()
fun bar(): String = qux()
fun qux(): String = "OK"
fun box(): String = foo()