5 lines
204 B
Kotlin
5 lines
204 B
Kotlin
// "class org.jetbrains.jet.plugin.quickfix.MakeOverriddenMemberOpenFix" "false"
|
|
// ERROR: 'notify' in 'Object' is final and cannot be overridden
|
|
class A : Object() {
|
|
override<caret> fun notify() {}
|
|
} |