mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-05 08:31:31 +00:00
16 lines
493 B
Plaintext
Vendored
16 lines
493 B
Plaintext
Vendored
package test
|
|
|
|
public interface InheritedOverriddenAdapter {
|
|
|
|
public open class Sub : test.InheritedOverriddenAdapter.Super {
|
|
public constructor Sub()
|
|
public open fun foo(/*0*/ p0: (() -> kotlin.Unit!)!): kotlin.Unit
|
|
public open override /*1*/ /*fake_override*/ 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
|
|
}
|
|
}
|