Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
21de67cac1bef9259daa407b68a12e178923aef3
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
privatePropertyWithoutBackingField.kt
blob: e03074deaa0e4feb01d9b1955f2f559be73b65a6 [
file
]
class
Test
{
private
var
i
:
Int
get
()
=
1
set
(
i
)
{}
fun foo
()
{
fun f
()
{
i
=
2
}
f
()
}
}
fun box
():
String
{
Test
().
foo
()
return
"OK"
}