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