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