Files
kotlin/compiler/testData/loadJava/compiledJava/sam/adapters/inheritance/InheritedOverridden.txt

15 lines
387 B
Plaintext
Vendored

package test
public interface InheritedOverridden {
public open class Sub : test.InheritedOverridden.Super {
public constructor Sub()
public open override /*1*/ fun foo(/*0*/ p0: java.lang.Runnable!): kotlin.Unit
}
public open class Super {
public constructor Super()
public open fun foo(/*0*/ p0: java.lang.Runnable!): kotlin.Unit
}
}