inline fun go(f: () -> String) = f() fun String.id(): String = this fun box(): String { val x = "OK" return go(x::id) }