Files
kotlin-fork/compiler/testData/loadKotlin/classFun/FunDelegationToTraitImpl.txt
T
Alexander Udalov c0dc1e6742 NamespaceComparator now serializes kind, if it's not DECLARATION.
Lots of test data changed to include members' kinds.
2012-09-07 19:00:08 +04:00

10 lines
265 B
Plaintext

namespace test
internal abstract trait test.A : jet.Any {
internal open fun f(): jet.String
}
internal final class test.B : test.A {
public final /*constructor*/ fun <init>(): test.B
internal open override /*1*/ /*fake_override*/ fun f(): jet.String
}