Files
kotlin-fork/idea/testData/quickfix/override/nothingToOverride/afterAddFunctionInLocalDeclaration.kt
T

11 lines
166 B
Kotlin

// "Add 'open fun f()' to 'A'" "true"
open class A {
open fun f() {
}
}
fun test() {
val some = object : A() {
<caret>override fun f() {}
}
}