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,20 @@
// "Make 'foo' in A, X and Y open" "true"
open class A {
fun foo() {}
}
trait X {
final fun foo() {}
}
trait Y {
final fun foo() {}
}
trait Z {
fun foo() {}
}
class B : A(), X, Y, Z {
override<caret> fun foo() {}
}