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