Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
534b00eff856e0e4dcaf105df9a043d9b1263ff7
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
accessToPrivateSetter.kt
blob: d991a497ec526bcbf258feb295c1c6390b94c6f9 [
file
]
class
D
{
var
foo
=
1
private
set
fun foo
()
{
foo
=
2
}
}
fun box
():
String
{
D
().
foo
()
return
"OK"
}