Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
decreaseVisibility
/
exposedSuperClassProtectedInAnother.kt
blob: e5a0b8f556cef091dae6d78c7508f2240c96803f [
file
]
// "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
)
}