Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideNonUnitFunction.kt.after
T
2012-04-04 11:53:48 +04:00

11 lines
154 B
Plaintext

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