Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideExtensionFunction.kt
T
Alexey Sedunov 5f87e84966 Override/Implement: Do not insert super-call into extension body
Such super-calls are not are supported yet

 #KT-4311 Fixed
2018-06-19 12:22:39 +03:00

9 lines
99 B
Kotlin
Vendored

open class A {
open fun Int.foo(): Int {
return 0
}
}
class B: A() {
<caret>
}