mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
20 lines
677 B
Plaintext
Vendored
20 lines
677 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*/ t: kotlin.String): kotlin.Unit
|
|
}
|
|
|
|
public interface Super1</*0*/ T> {
|
|
public abstract fun dummy(): kotlin.Unit
|
|
public abstract fun foo(/*0*/ t: T): kotlin.Unit
|
|
}
|
|
|
|
public interface Super2</*0*/ E> {
|
|
public abstract fun dummy(): kotlin.Unit
|
|
public abstract fun foo(/*0*/ t: E): kotlin.Unit
|
|
}
|
|
}
|