Fix tests after implementing trailing comma in formatter
#KT-34744
This commit is contained in:
@@ -7,7 +7,9 @@ data class My(val x: Int)
|
||||
fun foo(f: () -> My) {}
|
||||
|
||||
fun test() {
|
||||
foo(fun(): My {
|
||||
return My(42)
|
||||
})
|
||||
foo(
|
||||
fun(): My {
|
||||
return My(42)
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user