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