Files
kotlin-fork/idea/testData/quickfix/increaseVisibility/invisibleFake/methodToInternal.kt
T

12 lines
147 B
Kotlin
Vendored

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