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