Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
decreaseVisibility
/
exposedSuperClass.kt
blob: 53e79fba97e1cd5f8ea636997aa60b3467d8158e [
file
]
// "Make 'First' private" "true"
// ACTION: Make 'Data' protected
class
Outer
{
private
open
class
Data
(
val x
:
Int
)
protected
class
First
:
<caret>
Data
(
42
)
}