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