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

9 lines
141 B
Plaintext
Vendored

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