mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
11 lines
222 B
Plaintext
Vendored
11 lines
222 B
Plaintext
Vendored
package test
|
|
|
|
public interface A {
|
|
public open fun f(): kotlin.String
|
|
}
|
|
|
|
public final class B : test.A {
|
|
/*primary*/ public constructor B()
|
|
public open override /*1*/ /*fake_override*/ fun f(): kotlin.String
|
|
}
|