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

10 lines
180 B
Plaintext
Vendored

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