Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
increaseVisibility
/
overriddenProtectedMemberToPublicSingleFile.kt
blob: ce421fe9e5d0865c969bfe2d01dec69ce88bc3ca [
file
] [
log
] [
blame
]
// "Make 'x' public" "true"
open
class
Base
(
protected
open val x
:
Int
)
class
First
(
override
val x
:
Int
)
:
Base
(
x
)
class
Second
(
f
:
First
)
{
val y
=
f
.<
caret
>
x
}