Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
kt8928.kt
blob: b16ec00a3947ebeb88a9565ff8adcf1c9681abc3 [
file
]
class
App
{
fun init
()
{
s
=
"OK"
}
companion
object
{
var
s
:
String
=
"Fail"
private
set
}
}
fun box
():
String
{
App
().
init
()
return
App
.
s
}