Files
kotlin-fork/compiler/testData/lazyResolve/recursiveComparator/OverrideWithErrors.txt
T
2014-03-02 19:55:26 +04:00

12 lines
292 B
Plaintext

package test
internal open class A {
/*primary*/ public constructor A()
internal open fun foo(/*0*/ a: [ERROR : E]): kotlin.Unit
}
internal final class B : test.A {
/*primary*/ public constructor B()
internal open override /*1*/ fun foo(/*0*/ a: [ERROR : E]): kotlin.Unit
}