Don't report 'protected in final' for implicitly protected
So #KT-16339 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
f13997750f
commit
8fb818fc74
@@ -0,0 +1,9 @@
|
||||
open class Test {
|
||||
open protected fun test() {}
|
||||
}
|
||||
|
||||
class Subclass : Test() {
|
||||
protected override fun test() {
|
||||
super.test()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user