mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
16 lines
412 B
Plaintext
16 lines
412 B
Plaintext
package test
|
|
|
|
internal final class A : test.T {
|
|
/*primary*/ public constructor A()
|
|
internal open override /*1*/ fun foo(): kotlin.Int
|
|
|
|
internal class object <class-object-for-A> : test.T {
|
|
/*primary*/ private constructor <class-object-for-A>()
|
|
internal open override /*1*/ /*delegation*/ fun foo(): kotlin.Int
|
|
}
|
|
}
|
|
|
|
internal trait T {
|
|
internal abstract fun foo(): kotlin.Int
|
|
}
|