Fix tests after disabling trailing comma
#KT-34744
This commit is contained in:
@@ -2,9 +2,7 @@ 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