Files
kotlin-fork/idea/testData/intentions/changeVisibility/protected/overrideVisibilityToDefault.kt.after
T
2015-05-27 16:15:51 +03:00

7 lines
108 B
Plaintext

interface I {
protected fun foo()
}
abstract class C : I {
<caret>protected override fun foo() {}
}