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

12 lines
148 B
Kotlin
Vendored

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