9 lines
122 B
Kotlin
Vendored
9 lines
122 B
Kotlin
Vendored
// "Add 'override' modifier" "true"
|
|
open class A() {
|
|
open fun foo() {}
|
|
}
|
|
|
|
class B() : A() {
|
|
fun <caret>foo() {}
|
|
}
|