Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
objects
/
kt1047a.kt
blob: a0ab8a45a6754779aee223d3b52f77bf47355d1c [
file
]
var
result
:
String
=
"FAIL"
public
open
class
Test
()
{
open
public
fun test
()
:
Unit
{
result
=
ok
!!
}
companion
object
{
private
val ok
:
String
?
=
"OK"
}
}
fun box
()
:
String
{
Test
().
test
()
return
result
}