Don't report 'protected in final' for implicitly protected

So #KT-16339 Fixed
This commit is contained in:
mglukhikh
2017-03-31 15:33:50 +03:00
committed by Mikhail Glukhikh
parent f13997750f
commit 8fb818fc74
2 changed files with 12 additions and 1 deletions
@@ -0,0 +1,9 @@
open class Test {
open protected fun test() {}
}
class Subclass : Test() {
protected override fun test() {
super.test()
}
}