Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
increaseVisibility
/
privateMemberToInternalSingleFile.kt
blob: 7dea88ed838baa403ded040914c920645365445d [
file
] [
log
] [
blame
]
// "Make 'x' internal" "true"
class
First
(
private
val x
:
Int
)
class
Second
(
f
:
First
)
{
val y
=
f
.<
caret
>
x
}