Files
kotlin-fork/compiler/testData/codegen/light-analysis/jvmStatic/importStaticMemberFromObject.txt
T
Alexander Udalov 0db60bf6cb Do not always generate synthetic "$annotations" as private
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
2017-02-03 19:35:15 +03:00

34 lines
1.1 KiB
Plaintext
Vendored

@kotlin.Metadata
public final class C {
public final static field Companion: C.Companion
private final static field p1: int
inner class C/Companion
public method <init>(): void
public final static @kotlin.jvm.JvmStatic method f1(): int
public final static method getP1(): int
}
@kotlin.Metadata
public final static class C/Companion {
inner class C/Companion
private method <init>(): void
public final @kotlin.jvm.JvmStatic method f1(): int
public final method getP1(): int
public synthetic deprecated static @kotlin.jvm.JvmStatic method p1$annotations(): void
}
@kotlin.Metadata
public final class ImportStaticMemberFromObjectKt {
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
}
@kotlin.Metadata
public final class O {
public final static field INSTANCE: O
private final static field p: int
private method <init>(): void
public final static @kotlin.jvm.JvmStatic method f(): int
public final static method getP(): int
public synthetic deprecated static @kotlin.jvm.JvmStatic method p$annotations(): void
}