Files
kotlin-fork/compiler/testData/codegen/light-analysis/bridges/delegationComplex.txt
T

34 lines
868 B
Plaintext
Vendored

public interface Box {
public abstract method get(): java.lang.Object
}
public class Content {
public method <init>(): void
public @org.jetbrains.annotations.NotNull method toString(): java.lang.String
}
public interface ContentBox
public final class ContentBoxDelegate {
private synthetic final field $$delegate_0: ContentBox
public method <init>(): void
public @org.jetbrains.annotations.NotNull method get(): Content
public synthetic method get(): java.lang.Object
}
public final class DelegationComplexKt {
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
}
public final class Impl {
public final static field INSTANCE: Impl
private method <init>(): void
public @org.jetbrains.annotations.NotNull method get(): Content
public synthetic method get(): java.lang.Object
}