d2592e4a2c
#KT-7114 Fixed
16 lines
396 B
Plaintext
Vendored
16 lines
396 B
Plaintext
Vendored
package test
|
|
|
|
internal final class A : test.T {
|
|
/*primary*/ public constructor A()
|
|
internal open override /*1*/ fun foo(): kotlin.Int
|
|
|
|
public 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
|
|
}
|