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

10 lines
180 B
Plaintext
Vendored

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