Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
decreaseVisibility
/
exposedSuperClassProtectedInAnother.kt
blob: e5a0b8f556cef091dae6d78c7508f2240c96803f [
file
] [
log
] [
blame
]
// "Make 'First' private" "true"
// ACTION: Make 'Data' public
class
Other
{
internal
open
class
Data
(
val x
:
Int
)
}
class
Another
{
protected
class
First
:
Other
.<
caret
>
Data
(
42
)
}