Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
backingField
/
CustomGetSet.kt
blob: ec12dbb342faef8e43480d56625ac4da1ffcbee5 [
file
]
// FIR_IDENTICAL
class
Flower
()
{
var
minusOne
:
Int
=
1
get
()
=
field
+
1
set
(
n
:
Int
)
{
field
=
n
-
1
}
}