mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
28 lines
737 B
Plaintext
Vendored
28 lines
737 B
Plaintext
Vendored
package test
|
|
|
|
internal interface A</*0*/ T> {
|
|
internal abstract fun foo(): T
|
|
}
|
|
|
|
internal open class B : test.A<kotlin.Int?> {
|
|
public constructor B()
|
|
internal open fun foo(): kotlin.Int?
|
|
}
|
|
|
|
internal abstract class C : test.A<kotlin.Int?> {
|
|
public constructor C()
|
|
internal abstract /*fake_override*/ fun foo(): kotlin.Int?
|
|
}
|
|
|
|
public/*package*/ open class ExtendsB : test.B {
|
|
public/*package*/ constructor ExtendsB()
|
|
internal 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
|
|
}
|