Pull Up: Remove visibility modifiers on adding 'override'

#KT-13535 Fixed
This commit is contained in:
Alexey Sedunov
2016-08-19 14:36:14 +03:00
parent 47d4454590
commit 9607fd0620
7 changed files with 32 additions and 2 deletions
@@ -1,6 +1,6 @@
class B: A() {
// INFO: {"checked": "true"}
protected override fun foo(): Int = 1
override fun foo(): Int = 1
fun bar() = foo() + 1
}