mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
15 lines
387 B
Plaintext
Vendored
15 lines
387 B
Plaintext
Vendored
package test
|
|
|
|
public interface InheritedOverridden {
|
|
|
|
public open class Sub : test.InheritedOverridden.Super {
|
|
public constructor Sub()
|
|
public open override /*1*/ 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
|
|
}
|
|
}
|