Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0114e07472e7613fb80622821692cfa9e6922f31
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLibAndBackendCompilation
/
inline
/
recursionCycleWithStdlibCall.kt
blob: c5b05ead3a662a6e89defc69b58797ca7304adf7 [
file
] [
log
] [
blame
]
// IGNORE_BACKEND: JS_IR
// TODO: fix in KT-61881
// DIAGNOSTICS: -NOTHING_TO_INLINE
// FIR_IDENTICAL
inline
fun f
():
Unit
=
<!
INLINE_CALL_CYCLE
!>
g
()<!>
inline
fun g
():
Unit
=
run
{
<!
INLINE_CALL_CYCLE
!>
f
()<!>
}