Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fcbc6b84598bef4d4ca95c593070c2a5cba1da35
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLibAndBackendCompilation
/
inline
/
recursionCycleWithStdlibCall.kt
blob: 479363857f07cce33483f2c57ef7f86dd9113266 [
file
]
// !DIAGNOSTICS: -NOTHING_TO_INLINE
inline
fun f
():
Unit
=
<!
INLINE_CALL_CYCLE
!>
g
()<!>
inline
fun g
():
Unit
=
run
{
<!
INLINE_CALL_CYCLE
!>
f
()<!>
}