mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
16 lines
322 B
Plaintext
Vendored
16 lines
322 B
Plaintext
Vendored
package test
|
|
|
|
public interface A</*0*/ T> {
|
|
public abstract fun foo(): T
|
|
}
|
|
|
|
public final class B : test.A<kotlin.Int> {
|
|
public constructor B()
|
|
public open fun foo(): kotlin.Int
|
|
}
|
|
|
|
public/*package*/ open class Test {
|
|
public/*package*/ constructor Test()
|
|
public/*package*/ open fun test(): kotlin.Unit
|
|
}
|