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