mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 00:21:26 +00:00
Since annotations are a part of the declaration, they must have the same visibility as the declaration in the bytecode. Otherwise obfuscators like Proguard might strip the "$annotations" method and no annotations would be found via Kotlin reflection #KT-15993 Fixed
14 lines
529 B
Plaintext
Vendored
14 lines
529 B
Plaintext
Vendored
@kotlin.Metadata
|
|
public final class test/Foo {
|
|
public final static method foo(): void
|
|
}
|
|
|
|
@kotlin.Metadata
|
|
synthetic final class test/Foo__InlineOnlyPropertyMultifileKt {
|
|
public final static method foo(): void
|
|
private final static method getExtProp(p0: java.lang.Object): java.lang.String
|
|
private final static method getProp(): java.lang.String
|
|
public synthetic deprecated static @kotlin.internal.InlineOnly method prop$annotations(): void
|
|
private final static method setProp(p0: java.lang.String): void
|
|
}
|