Fix tests after implementing trailing comma in formatter
#KT-34744
This commit is contained in:
@@ -2,7 +2,9 @@ class Foo
|
||||
fun baz(f: Foo.(i: Int, j: Int) -> Int) {}
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
baz(fun Foo.(i: Int, j: Int): Int {
|
||||
return i + j
|
||||
})
|
||||
baz(
|
||||
fun Foo.(i: Int, j: Int): Int {
|
||||
return i + j
|
||||
}
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user