mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
16 lines
534 B
Plaintext
16 lines
534 B
Plaintext
package test
|
|
|
|
public trait OverrideWithErasedParameter {
|
|
|
|
public trait Sub</*0*/ T> : test.OverrideWithErasedParameter.Super<T!> {
|
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
|
public abstract override /*1*/ /*fake_override*/ fun foo(/*0*/ p0: T!): kotlin.Unit
|
|
public abstract fun foo(/*0*/ p0: kotlin.Any!): kotlin.Unit
|
|
}
|
|
|
|
public trait Super</*0*/ T> {
|
|
public abstract fun dummy(): kotlin.Unit
|
|
public abstract fun foo(/*0*/ p0: T!): kotlin.Unit
|
|
}
|
|
}
|