Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
()<!>
}