mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
7 lines
186 B
Kotlin
Vendored
7 lines
186 B
Kotlin
Vendored
// !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() |