mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 15:51:59 +00:00
22 lines
829 B
Plaintext
Vendored
22 lines
829 B
Plaintext
Vendored
package test
|
|
|
|
public interface SamSubinterfaceOfTwo {
|
|
|
|
public interface Sub : test.SamSubinterfaceOfTwo.Super1, test.SamSubinterfaceOfTwo.Super2<kotlin.String!> {
|
|
public abstract override /*2*/ /*fake_override*/ fun f(): kotlin.String!
|
|
}
|
|
|
|
public interface Super1 {
|
|
public abstract fun f(): kotlin.CharSequence!
|
|
}
|
|
|
|
public interface Super2</*0*/ T : kotlin.Any!> {
|
|
public abstract fun f(): T!
|
|
}
|
|
|
|
// Static members
|
|
public final /*synthesized*/ fun Sub(/*0*/ function: () -> kotlin.String!): test.SamSubinterfaceOfTwo.Sub
|
|
public final /*synthesized*/ fun Super1(/*0*/ function: () -> kotlin.CharSequence!): test.SamSubinterfaceOfTwo.Super1
|
|
public final /*synthesized*/ fun </*0*/ T : kotlin.Any!> Super2(/*0*/ function: () -> T!): test.SamSubinterfaceOfTwo.Super2<T>
|
|
}
|