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