Files
kotlin-fork/compiler/testData/lazyResolve/namespaceComparator/OverrideWithErrors.txt
T
2012-07-27 20:16:57 +04:00

11 lines
341 B
Plaintext

namespace test
internal open class test.A : jet.Any {
public final /*constructor*/ fun <init>(): test.A
internal open fun foo(/*0*/ a: [ERROR : E]): jet.Tuple0
}
internal final class test.B : test.A {
public final /*constructor*/ fun <init>(): test.B
internal open override /*1*/ fun foo(/*0*/ a: [ERROR : E]): jet.Tuple0
}