mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +00:00
17 lines
578 B
Plaintext
17 lines
578 B
Plaintext
package test
|
|
|
|
public trait InheritedOverridden {
|
|
|
|
public open class Sub : test.InheritedOverridden.Super {
|
|
public constructor Sub()
|
|
public final override /*1*/ /*synthesized*/ fun foo(/*0*/ p0: (() -> kotlin.Unit)!): kotlin.Unit
|
|
public open override /*1*/ fun foo(/*0*/ p0: java.lang.Runnable!): kotlin.Unit
|
|
}
|
|
|
|
public open class Super {
|
|
public constructor Super()
|
|
public final /*synthesized*/ fun foo(/*0*/ p0: (() -> kotlin.Unit)!): kotlin.Unit
|
|
public open fun foo(/*0*/ p0: java.lang.Runnable!): kotlin.Unit
|
|
}
|
|
}
|