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 SubclassFromGenericAndNot {
|
|
|
|
public interface Generic</*0*/ T> {
|
|
public abstract fun dummy(): kotlin.Unit
|
|
public abstract fun foo(/*0*/ key: T): kotlin.Unit
|
|
}
|
|
|
|
public interface NonGeneric {
|
|
public abstract fun dummy(): kotlin.Unit
|
|
public abstract fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
|
}
|
|
|
|
public interface Sub : test.SubclassFromGenericAndNot.NonGeneric, test.SubclassFromGenericAndNot.Generic<kotlin.String> {
|
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
|
public abstract override /*2*/ fun foo(/*0*/ key: kotlin.String): kotlin.Unit
|
|
}
|
|
}
|