Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
variables
/
changeMutability
/
localInGetter.kt
blob: 053980452078e5acdf3c05dabe526f6ac40e8f75 [
file
] [
log
] [
blame
]
// "Make variable mutable" "true"
val
String
.
prop
:
Int
get
()
{
val p
=
1
<caret>
p
=
2
return
p
}