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

9 lines
156 B
Kotlin
Vendored

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