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