Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideNonUnitFunction.kt.after
T
2014-12-18 15:41:34 +03:00

10 lines
178 B
Plaintext

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