5 lines
160 B
Kotlin
5 lines
160 B
Kotlin
// "Make Object.notify open" "false"
|
|
// ERROR: 'notify' in 'Object' is final and cannot be overridden
|
|
class A : Object() {
|
|
override<caret> fun notify() {}
|
|
} |