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

10 lines
189 B
Kotlin
Vendored

// "Make 'First' private" "true"
// ACTION: Make 'Data' public
class Other {
internal open class Data(val x: Int)
}
class Another {
protected class First : Other.<caret>Data(42)
}