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