10 lines
170 B
Plaintext
10 lines
170 B
Plaintext
trait A {
|
|
fun foo(value : String) : Unit = 0
|
|
}
|
|
|
|
class C : A {
|
|
override fun foo(value: String) {
|
|
<selection><caret>super<A>.foo(value)</selection>
|
|
}
|
|
}
|