Files
kotlin/compiler/testData/loadJava/compiledJava/sam/adapters/inheritance/InheritedSameAdapters.txt
2017-05-05 21:30:35 +03:00

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
}
}