Files
kotlin/idea/testData/quickfix/decreaseVisibility/exposedSuperInterfacePrivate.kt

12 lines
190 B
Kotlin
Vendored

// "Make 'Derived' private" "true"
// ACTION: Make 'Derived' internal
import Outer.Base
internal class Outer {
interface Base
}
class Container {
interface Derived : <caret>Base
}