Files
kotlin-fork/compiler/testData/codegen/light-analysis/secondaryConstructors/delegationWithPrimary.txt
T

25 lines
769 B
Plaintext
Vendored

public interface A {
public abstract @org.jetbrains.annotations.NotNull method foo(): java.lang.String
}
public final class B {
public method <init>(): void
public @org.jetbrains.annotations.NotNull method foo(): java.lang.String
}
public final class C {
private synthetic final field $$delegate_0: B
public method <init>(): void
public method <init>(p0: int): void
public @org.jetbrains.annotations.NotNull method foo(): java.lang.String
}
public final class DelegationWithPrimaryKt {
private final static @org.jetbrains.annotations.NotNull field global: B
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
public final static @org.jetbrains.annotations.NotNull method getGlobal(): B
}