Formatter: space between type argument list and function literal argument
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
fun f() {
|
||||
array(1, 2, 3).map { v -> v }
|
||||
array(1, 2, 3).map<Int> { v -> v }
|
||||
array(1, 2, 3).map() { v -> v }
|
||||
array(1, 2, 3).map<Int>() { v -> v }
|
||||
}
|
||||
Reference in New Issue
Block a user