Test for invoking "Override methods" for fake override from library
This commit is contained in:
Binary file not shown.
@@ -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()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user