mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
17 lines
388 B
Plaintext
Vendored
17 lines
388 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 final fun foo(): kotlin.Int
|
|
}
|
|
|
|
public/*package*/ open class Test : test.B {
|
|
public/*package*/ constructor Test()
|
|
public final /*fake_override*/ fun foo(): kotlin.Int
|
|
public/*package*/ open fun test(): kotlin.Unit
|
|
}
|