mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
12 lines
302 B
Plaintext
Vendored
12 lines
302 B
Plaintext
Vendored
package test
|
|
|
|
public open class Base</*0*/ T> {
|
|
/*primary*/ public constructor Base</*0*/ T>()
|
|
public final fun foo(): T
|
|
}
|
|
|
|
public final class Inh : test.Base<kotlin.String> {
|
|
/*primary*/ public constructor Inh()
|
|
public final override /*1*/ /*fake_override*/ fun foo(): kotlin.String
|
|
}
|