// !DIAGNOSTICS: -NOTHING_TO_INLINE inline fun f(): Unit = g() inline fun g(): Unit = h { f() } inline fun h(fn: ()->Unit): Unit = fn()