mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
in multifile part members - invocation of multifile part/facade members (TODO: deserialized descriptor case) - inlining of multifile part/facade members (TODO: inline against binaries case)
11 lines
197 B
Kotlin
Vendored
11 lines
197 B
Kotlin
Vendored
@file:JvmName("TestPackage")
|
|
@file:JvmMultifileClass
|
|
package test
|
|
|
|
fun foo(): String = bar()
|
|
fun bar(): String {
|
|
class Local(val x: String)
|
|
return Local("OK").x
|
|
}
|
|
|
|
fun box(): String = foo() |