Formatter: space between type argument list and function literal argument

This commit is contained in:
Natalia Ukhorskaya
2015-08-03 18:34:12 +03:00
parent 03097d3453
commit ba48a5b7fc
3 changed files with 8 additions and 1 deletions
@@ -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 }
}