Files
kotlin-fork/idea/testData/quickfix/increaseVisibility/invisibleFake/methodToProtected2.kt
T
2017-08-18 15:53:41 +03:00

14 lines
168 B
Kotlin
Vendored

// "Make 'doSth' protected" "true"
open class A {
private fun doSth() {
}
}
open class B : A()
class C : B() {
fun bar() {
<caret>doSth()
}
}