Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
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"
}