Files
kotlin/compiler/testData/loadJava/compiledJava/sam/DifferentParametersCount.txt
2017-05-05 21:30:10 +03:00

21 lines
621 B
Plaintext
Vendored

package test
public final class DifferentParametersCount {
public constructor DifferentParametersCount()
public open class A {
public constructor A()
// Static members
public open fun foo(/*0*/ p0: java.lang.Runnable!, /*1*/ p1: kotlin.Int): kotlin.Unit
}
public open class B : test.DifferentParametersCount.A {
public constructor B()
// Static members
public open fun foo(/*0*/ p0: java.lang.Runnable!): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun foo(/*0*/ p0: java.lang.Runnable!, /*1*/ p1: kotlin.Int): kotlin.Unit
}
}