14 lines
198 B
Plaintext
Vendored
14 lines
198 B
Plaintext
Vendored
// FIR_IDENTICAL
|
|
package test
|
|
|
|
import dependency.A
|
|
|
|
public open class B() : A() {
|
|
|
|
}
|
|
|
|
public open class C() : B() {
|
|
override fun foo() {
|
|
<selection><caret>super.foo()</selection>
|
|
}
|
|
} |