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

7 lines
105 B
Kotlin

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