Files
kotlin-fork/compiler/testData/lazyResolve/recursiveComparator/OverrideWithErrors.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

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
}