Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideUnitFunction.kt.after
T
2014-10-06 17:53:02 +04:00

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>
}
}