Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fcbc6b84598bef4d4ca95c593070c2a5cba1da35
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLibAndBackendCompilation
/
inline
/
recursionCycle.kt
blob: 5fc5b471f4e4dce269e3831934ca9e3098e3ce24 [
file
]
// !DIAGNOSTICS: -NOTHING_TO_INLINE
inline
fun f
():
Unit
=
<!
INLINE_CALL_CYCLE
!>
g
()<!>
inline
fun g
():
Unit
=
<!
INLINE_CALL_CYCLE
!>
h
()<!>
inline
fun h
():
Unit
=
<!
INLINE_CALL_CYCLE
!>
f
()<!>