Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
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
()<!>