Fix tests after implementing trailing comma in formatter
#KT-34744
This commit is contained in:
+5
-3
@@ -1,7 +1,9 @@
|
||||
fun bar(f: (Int, Int) -> String) {}
|
||||
|
||||
fun test() {
|
||||
bar(fun(i: Int, j: Int): String {
|
||||
return "$i$j"
|
||||
})
|
||||
bar(
|
||||
fun(i: Int, j: Int): String {
|
||||
return "$i$j"
|
||||
}
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user