Test for invoking "Override methods" for fake override from library

This commit is contained in:
Pavel V. Talanov
2013-09-04 22:14:48 +04:00
parent e2cbfd8055
commit a1b397ee2d
6 changed files with 246 additions and 142 deletions
@@ -0,0 +1,11 @@
package test
import dependency.A
public open class B() : A() {
}
public open class C() : B() {
<caret>
}
@@ -0,0 +1,14 @@
package test
import dependency.A
public open class B() : A() {
}
public open class C() : B() {
override fun foo() {
super<B>.foo()
}
}