Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmStatic
/
kt45408.kt
blob: 965d6d4a868307be79c0d1b3884865f24e3cb669 [
file
] [
log
] [
blame
]
// TARGET_BACKEND: JVM
// WITH_STDLIB
fun box
()
=
X
.
tag
().
d
()
object
X
{
@JvmStatic
fun d
():
String
=
"OK"
@JvmStatic
fun tag
():
X
=
this
}