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