Introduce intention to name anonymous parameter #KT-17191 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
bc071bf543
commit
9dd217eee3
@@ -0,0 +1,7 @@
|
||||
fun foo(f: (a: Int, b: Int, c: Int) -> Unit) {
|
||||
f(1, 2, 3)
|
||||
}
|
||||
|
||||
fun bar() {
|
||||
foo { _, <caret>_, _ -> }
|
||||
}
|
||||
Reference in New Issue
Block a user