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

17 lines
422 B
Plaintext

package test
internal final class B : test.X, test.Y {
/*primary*/ public constructor B(/*0*/ a: test.X)
internal final val a: test.X
internal final fun <get-a>(): test.X
internal open override /*2*/ fun foo(): kotlin.Unit
}
internal trait X {
internal abstract fun foo(): kotlin.Unit
}
internal trait Y : test.X {
internal abstract override /*1*/ /*fake_override*/ fun foo(): kotlin.Unit
}