mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
Do not generate delegation from multi-file facade to inline-only functions because they are effectively private in bytecode #KT-10858 Fixed
13 lines
350 B
Plaintext
Vendored
13 lines
350 B
Plaintext
Vendored
@kotlin.Metadata
|
|
@kotlin.jvm.internal.KotlinMultifileClass
|
|
public final class test/Foo {
|
|
public final static method foo(): void
|
|
}
|
|
|
|
@kotlin.Metadata
|
|
@kotlin.jvm.internal.KotlinMultifileClassPart
|
|
synthetic final class test/Foo__InlineOnlyMultifileKt {
|
|
public final static method foo(): void
|
|
private final static method inlineOnly(): void
|
|
}
|