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