Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
properties
/
privateVar.kt
blob: ef291e0d9ceeeb9c86f71da07284cf048063a368 [
file
]
class
PrivateVar
()
{
private
var
x
=
0
;
fun setValueOfX
(
aValue
:
Int
)
{
x
=
aValue
}
fun getValueOfX
()
=
x
}