Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
decreaseVisibility
/
exposedSuperClassProtectedBase.kt.after
blob: 417862824622f96fc3a5f848bf5dab6300f72b04 [
file
] [
log
] [
blame
]
// "Make 'First' private" "true"
// ACTION: Make 'Data' public
private
open
class
Data
(
val x
:
Int
)
class
Outer
{
private
class
First
:
Data
(
42
)
}