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