Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
objects
/
kt1047.kt
blob: 07103f079164a36151ad4199b67de2744c4e12a1 [
file
]
// TARGET_BACKEND: JVM
// TARGET_BACKEND: JVM_IR
public
open
class
Test
()
{
open
public
fun test
()
:
Unit
{
System
.
out
?.
println
(
hello
)
}
companion
object
{
private
val hello
:
String
?
=
"Hello"
}
}
fun box
()
:
String
{
Test
().
test
()
return
"OK"
}