// "Rename to _" "true" fun foo(block: (String, Int) -> Unit) { block("", 1) } fun bar() { foo { x: String, y: Int -> y.hashCode() } }