5e1b219784
This quick-fix is registered for UNUSED_* diagnostic in places where it can be applied (destructured declarations/lambda parameters) #KT-14431 Fixed
11 lines
163 B
Kotlin
Vendored
11 lines
163 B
Kotlin
Vendored
// "Rename to _" "true"
|
|
fun foo(block: (String, Int) -> Unit) {
|
|
block("", 1)
|
|
}
|
|
|
|
fun bar() {
|
|
foo { x<caret>: String, y: Int ->
|
|
y.hashCode()
|
|
}
|
|
}
|