Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
PropertyAccessorBody.kt
blob: 0498f9af377b6c241f893e8df78a9326e215d758 [
file
]
var
prop
:
Int
get
()
{
print
(
"get"
)
val v
=
1
<caret>
v
return
1
}
set
{
print
(
"set"
)
val v
=
2
print
(
"yes"
)
}