Files
kotlin/compiler/testData/loadJava/compiledKotlin/classObject/Delegation.txt
Alexander Udalov 3a8ad45dec Append newline to EOF for .txt test data files
Reverts and fixes 102f0d3
2014-10-21 03:18:27 +04:00

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
}