Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/throws/Delegation.txt

39 lines
1.1 KiB
Plaintext
Vendored

package test
public final class E1 : java.lang.Exception {
public constructor E1()
public final /*fake_override*/ val cause: kotlin.Throwable?
public final /*fake_override*/ val message: kotlin.String?
}
public final class E2 : java.lang.Exception {
public constructor E2()
public final /*fake_override*/ val cause: kotlin.Throwable?
public final /*fake_override*/ val message: kotlin.String?
}
public final class Impl : test.Trait {
public constructor Impl()
public open fun none(): kotlin.Unit
public open fun one(): kotlin.Unit
public open fun two(): kotlin.Unit
}
public/*package*/ open class JavaClass {
public/*package*/ constructor JavaClass()
public/*package*/ open fun testMethod(): kotlin.Unit
}
public final class Test : test.Trait {
public constructor Test()
public open /*delegation*/ fun none(): kotlin.Unit
public open /*delegation*/ fun one(): kotlin.Unit
public open /*delegation*/ fun two(): kotlin.Unit
}
public interface Trait {
public abstract fun none(): kotlin.Unit
public abstract fun one(): kotlin.Unit
public abstract fun two(): kotlin.Unit
}