Files
kotlin-fork/compiler/testData/codegen/light-analysis/super/unqualifiedSuper.txt
T

57 lines
2.5 KiB
Plaintext
Vendored

public interface AnotherInterface
public class Base {
public method <init>(): void
public @org.jetbrains.annotations.NotNull method baseFun(): java.lang.String
public @org.jetbrains.annotations.NotNull method getBaseProp(): java.lang.String
public @org.jetbrains.annotations.NotNull method unambiguous(): java.lang.String
}
public final class Derived {
public method <init>(): void
public @org.jetbrains.annotations.NotNull method baseFun(): java.lang.String
public final @org.jetbrains.annotations.NotNull method callsBaseFun(): java.lang.String
public final @org.jetbrains.annotations.NotNull method callsInterfaceFun(): java.lang.String
public final @org.jetbrains.annotations.NotNull method callsUnambiguousFun(): java.lang.String
public @org.jetbrains.annotations.NotNull method getBaseProp(): java.lang.String
public final @org.jetbrains.annotations.NotNull method getsBaseProp(): java.lang.String
public @org.jetbrains.annotations.NotNull method interfaceFun(): java.lang.String
public @org.jetbrains.annotations.NotNull method unambiguous(): java.lang.String
}
public interface DerivedInterface {
inner class DerivedInterface/DefaultImpls
public abstract @org.jetbrains.annotations.NotNull method callsFunFromSuperInterface(): java.lang.String
public abstract @org.jetbrains.annotations.NotNull method interfaceFun(): java.lang.String
public abstract @org.jetbrains.annotations.NotNull method unambiguous(): java.lang.String
}
public final class DerivedInterface/DefaultImpls {
inner class DerivedInterface/DefaultImpls
public static @org.jetbrains.annotations.NotNull method callsFunFromSuperInterface(p0: DerivedInterface): java.lang.String
public static @org.jetbrains.annotations.NotNull method interfaceFun(p0: DerivedInterface): java.lang.String
public static @org.jetbrains.annotations.NotNull method unambiguous(p0: DerivedInterface): java.lang.String
}
public interface Interface {
inner class Interface/DefaultImpls
public abstract @org.jetbrains.annotations.NotNull method interfaceFun(): java.lang.String
public abstract @org.jetbrains.annotations.NotNull method unambiguous(): java.lang.String
}
public final class Interface/DefaultImpls {
inner class Interface/DefaultImpls
public static @org.jetbrains.annotations.NotNull method interfaceFun(p0: Interface): java.lang.String
}
public final class UnqualifiedSuperKt {
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
}