mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
16 lines
386 B
Plaintext
Vendored
16 lines
386 B
Plaintext
Vendored
package test
|
|
|
|
public final class A : test.T {
|
|
/*primary*/ public constructor A()
|
|
public open override /*1*/ fun foo(): kotlin.Int
|
|
|
|
public companion object Companion : test.T {
|
|
/*primary*/ private constructor Companion()
|
|
public open override /*1*/ /*delegation*/ fun foo(): kotlin.Int
|
|
}
|
|
}
|
|
|
|
public interface T {
|
|
public abstract fun foo(): kotlin.Int
|
|
}
|