Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
refactoring
/
introduceVariable
/
NameSuggestionCheckVisibility.kt.after
blob: 0a05311fcb3e22ea9dc8c22ebe7239c075ca9300 [
file
] [
log
] [
blame
]
open
class
Base
{
private
val xxx
=
1
}
class
For
:
Base
()
{
fun foo
(
f
:
For
)
{
val xxx
=
f
.
xxx
}
}
val
For
.
xxx
:
For
get
()
=
For
()