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