11 lines
187 B
Plaintext
Vendored
11 lines
187 B
Plaintext
Vendored
// FIR_IDENTICAL
|
|
interface A {
|
|
fun foo(value : String) : Unit {}
|
|
}
|
|
|
|
class C : A {
|
|
override fun foo(value: String) {
|
|
<selection><caret>super.foo(value)</selection>
|
|
}
|
|
}
|