mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
19 lines
732 B
Plaintext
19 lines
732 B
Plaintext
package test
|
|
|
|
public trait AdapterDoesntOverrideDeclaration : java.lang.Object {
|
|
|
|
public trait Sub : test.AdapterDoesntOverrideDeclaration.Super {
|
|
public abstract override /*1*/ /*fake_override*/ fun foo(/*0*/ p0: (() -> jet.Unit)?): jet.Unit
|
|
public final /*synthesized*/ fun foo(/*0*/ p0: (() -> jet.Unit)?): jet.Unit
|
|
public abstract fun foo(/*0*/ p0: java.lang.Runnable?): jet.Unit
|
|
}
|
|
|
|
public trait Super : java.lang.Object {
|
|
public abstract fun foo(/*0*/ p0: (() -> jet.Unit)?): jet.Unit
|
|
}
|
|
}
|
|
|
|
package test.AdapterDoesntOverrideDeclaration {
|
|
public /*synthesized*/ fun Super(/*0*/ function: ((() -> jet.Unit)?) -> jet.Unit): test.AdapterDoesntOverrideDeclaration.Super
|
|
}
|