Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmStatic
/
inline.kt
blob: 3f90a43724a8aaf186eb12b6a999db46aecdcc65 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
// TARGET_BACKEND: JVM
// WITH_RUNTIME
object
A
{
@JvmStatic
inline
fun test
(
b
:
String
=
"OK"
)
:
String
{
return
b
}
}
fun box
():
String
{
if
(
A
.
test
()
!=
"OK"
)
return
"fail 1"
return
"OK"
}