Added 'change visibility modifier' quick fix

This commit is contained in:
Svetlana Isakova
2012-04-04 14:22:10 +04:00
parent fbffbc541a
commit 0f20d4a6e2
10 changed files with 264 additions and 59 deletions
@@ -0,0 +1,8 @@
// "Change visibility modifier" "true"
open class A {
protected open fun run() {}
}
class B : A() {
<caret>protected override fun run() {}
}