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