mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
11 lines
277 B
Plaintext
Vendored
11 lines
277 B
Plaintext
Vendored
package test
|
|
|
|
public open class Class : test.Trait {
|
|
/*primary*/ public constructor Class()
|
|
public open override /*1*/ /*fake_override*/ fun f(/*0*/ a: kotlin.String): kotlin.Unit
|
|
}
|
|
|
|
public interface Trait {
|
|
public open fun f(/*0*/ a: kotlin.String): kotlin.Unit
|
|
}
|