mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-03 15:52:00 +00:00
17 lines
443 B
Plaintext
Vendored
17 lines
443 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!
|
|
}
|
|
}
|