9f845f0de4
#KT-4892 Fixed
10 lines
167 B
Plaintext
10 lines
167 B
Plaintext
trait A {
|
|
fun foo(value : String) : Unit = 0
|
|
}
|
|
|
|
class C : A {
|
|
override fun foo(value: String) {
|
|
<selection><caret>super.foo(value)</selection>
|
|
}
|
|
}
|