Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
variables
/
changeMutability
/
valWithSetter.kt
blob: 8cd3efeb1939016cef6405a40fc71f957b253bfd [
file
] [
log
] [
blame
]
// "Make variable mutable" "true"
class
A
()
{
val a
:
Int
=
0
<caret>
set
(
v
:
Int
)
{}
}