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