Files
kotlin/idea/testData/quickfix/decreaseVisibility/exposedSuperClass.kt

8 lines
167 B
Kotlin
Vendored

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