mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
20 lines
726 B
Plaintext
Vendored
20 lines
726 B
Plaintext
Vendored
package test
|
|
|
|
public interface SubclassFromGenericAndNot {
|
|
|
|
public interface Generic</*0*/ T : kotlin.Any!> {
|
|
public abstract fun dummy(): kotlin.Unit
|
|
public abstract fun foo(/*0*/ p0: T!): kotlin.Unit
|
|
}
|
|
|
|
public interface NonGeneric {
|
|
public abstract fun dummy(): kotlin.Unit
|
|
public abstract fun foo(/*0*/ @org.jetbrains.annotations.NotNull 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*/ p0: kotlin.String): kotlin.Unit
|
|
}
|
|
}
|