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

9 lines
148 B
Plaintext
Vendored

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