mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
28 lines
723 B
Plaintext
Vendored
28 lines
723 B
Plaintext
Vendored
package test
|
|
|
|
public interface A</*0*/ T> {
|
|
public abstract fun foo(): T
|
|
}
|
|
|
|
public open class B : test.A<kotlin.Byte> {
|
|
public constructor B()
|
|
public open fun foo(): kotlin.Byte
|
|
}
|
|
|
|
public abstract class C : test.A<kotlin.Byte> {
|
|
public constructor C()
|
|
public abstract /*fake_override*/ fun foo(): kotlin.Byte
|
|
}
|
|
|
|
public/*package*/ open class ExtendsB : test.B {
|
|
public/*package*/ constructor ExtendsB()
|
|
public open /*fake_override*/ fun foo(): kotlin.Byte
|
|
public/*package*/ open fun test(): kotlin.Unit
|
|
}
|
|
|
|
public/*package*/ open class ExtendsC : test.C {
|
|
public/*package*/ constructor ExtendsC()
|
|
public open fun foo(): kotlin.Byte
|
|
public/*package*/ open fun test(): kotlin.Unit
|
|
}
|