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