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