LazyResolveNamespaceComparingTest → LazyResolveRecursiveComparingTest

This commit is contained in:
Evgeny Gerashchenko
2014-01-09 23:50:02 +04:00
parent db13cc6ec2
commit 5319c6e24c
45 changed files with 75 additions and 75 deletions
@@ -0,0 +1,11 @@
package test
internal open class A {
/*primary*/ public constructor A()
internal open fun foo(/*0*/ a: [ERROR : E]): jet.Unit
}
internal final class B : test.A {
/*primary*/ public constructor B()
internal open override /*1*/ fun foo(/*0*/ a: [ERROR : E]): jet.Unit
}