mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
19 lines
801 B
Plaintext
19 lines
801 B
Plaintext
package test
|
|
|
|
public trait InheritedSimple {
|
|
|
|
public trait Sub : test.InheritedSimple.Super {
|
|
public final override /*1*/ /*fake_override*/ fun foo(/*0*/ p0: (() -> kotlin.Unit)?): kotlin.Unit
|
|
public abstract override /*1*/ /*fake_override*/ fun foo(/*0*/ p0: java.lang.Runnable?): kotlin.Unit
|
|
}
|
|
|
|
public trait Super {
|
|
public final /*synthesized*/ fun foo(/*0*/ p0: (() -> kotlin.Unit)?): kotlin.Unit
|
|
public abstract fun foo(/*0*/ p0: java.lang.Runnable?): kotlin.Unit
|
|
}
|
|
|
|
// Static members
|
|
public final /*synthesized*/ fun Sub(/*0*/ function: (java.lang.Runnable?) -> kotlin.Unit): test.InheritedSimple.Sub
|
|
public final /*synthesized*/ fun Super(/*0*/ function: (java.lang.Runnable?) -> kotlin.Unit): test.InheritedSimple.Super
|
|
}
|