Files
kotlin-fork/compiler/testData/loadKotlin/classFun/FunInParamSuper.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

11 lines
380 B
Plaintext

namespace test
internal open class test.Base</*0*/ T : jet.Any?> : jet.Any {
public final /*constructor*/ fun </*0*/ T : jet.Any?><init>(): test.Base<T>
internal final fun foo(): T
}
internal final class test.Inh : test.Base<jet.String> {
public final /*constructor*/ fun <init>(): test.Inh
internal final override /*1*/ /*fake_override*/ fun foo(): jet.String
}