// DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE inline fun T.use(block: (T) -> R): R { return block(this) } fun foo() { 42.use { it -> it.toString() } }