Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
21de67cac1bef9259daa407b68a12e178923aef3
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
accessToPrivateSetter.kt
blob: 881f5eae288a8e8f738c03ef26ababc62fc3db20 [
file
]
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
class
D
{
var
foo
=
1
private
set
fun foo
()
{
foo
=
2
}
}
fun box
():
String
{
D
().
foo
()
return
"OK"
}