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