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

12 lines
143 B
Plaintext
Vendored

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