mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
20 lines
713 B
Plaintext
Vendored
20 lines
713 B
Plaintext
Vendored
package test
|
|
|
|
public interface SubstitutedClassParameters {
|
|
|
|
public interface Sub : test.SubstitutedClassParameters.Super1<kotlin.String!>, test.SubstitutedClassParameters.Super2<kotlin.String!> {
|
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
|
public abstract override /*2*/ fun foo(/*0*/ p0: kotlin.String!): kotlin.Unit
|
|
}
|
|
|
|
public interface Super1</*0*/ T : kotlin.Any!> {
|
|
public abstract fun dummy(): kotlin.Unit
|
|
public abstract fun foo(/*0*/ p0: T!): kotlin.Unit
|
|
}
|
|
|
|
public interface Super2</*0*/ E : kotlin.Any!> {
|
|
public abstract fun dummy(): kotlin.Unit
|
|
public abstract fun foo(/*0*/ p0: E!): kotlin.Unit
|
|
}
|
|
}
|