blob: 3e7e93847dc6980a73dc6e7503dde7687c96b7a6 [file] [log] [blame]
// "Rename to _" "true"
fun foo(block: (String, Int) -> Unit) {
block("", 1)
}
fun bar() {
foo { x<caret>: String, y: Int ->
y.hashCode()
}
}