QuickFix for OVERRIDING_FINAL_MEMBER

This commit is contained in:
Wojciech Lopata
2013-02-26 17:15:26 +01:00
committed by Evgeny Gerashchenko
parent 08ce27e97e
commit cee45f6a0a
12 changed files with 239 additions and 0 deletions
@@ -0,0 +1,5 @@
// "Make Object.notify open" "false"
// ERROR: 'notify' in 'Object' is final and cannot be overridden
class A : Object() {
override<caret> fun notify() {}
}