Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
75d8a5bca606366254123abd80c77147a3d426a6
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLibAndBackendCompilation
/
inline
/
recursionCycleWithStdlibCall.kt
blob: c5b05ead3a662a6e89defc69b58797ca7304adf7 [
file
]
// 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
()<!>
}