mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
17 lines
497 B
Plaintext
Vendored
17 lines
497 B
Plaintext
Vendored
package test
|
|
|
|
public interface InheritedSameAdapters {
|
|
|
|
public interface Sub : test.InheritedSameAdapters.Super1, test.InheritedSameAdapters.Super2 {
|
|
public abstract override /*2*/ /*fake_override*/ fun foo(/*0*/ p0: java.lang.Runnable!): kotlin.Unit
|
|
}
|
|
|
|
public interface Super1 {
|
|
public abstract fun foo(/*0*/ p0: java.lang.Runnable!): kotlin.Unit
|
|
}
|
|
|
|
public interface Super2 {
|
|
public abstract fun foo(/*0*/ p0: java.lang.Runnable!): kotlin.Unit
|
|
}
|
|
}
|