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

10 lines
181 B
Plaintext

trait A {
fun foo(value : String) : Int = 0
}
class C : A {
override fun foo(value: String): Int {
<selection><caret>return super<A>.foo(value)</selection>
}
}