Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideExtensionFunction.kt
T
2021-05-07 00:40:41 +03:00

10 lines
116 B
Kotlin
Vendored

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