Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmStatic
/
inline.kt
blob: 802d6b8da0be1e045774968993eb7db1b3e94ec5 [
file
] [
log
] [
blame
]
// 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"
}