Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmStatic
/
propertyAsDefault.kt
blob: 406aa0fde50bdaf127345c8226a655317fabd0cf [
file
]
// TARGET_BACKEND: JVM
// WITH_STDLIB
object
X
{
@JvmStatic
val x
=
"OK"
fun fn
(
value
:
String
=
x
):
String
=
value
}
fun box
():
String
{
return
X
.
fn
()
}