Formatter: support trailing comma in value arguments
#KT-34744
This commit is contained in:
+4
-2
@@ -13,8 +13,10 @@ val c = fun() = 4
|
||||
fun test() = fun test() = 4
|
||||
|
||||
fun test() {
|
||||
test(fun() {
|
||||
})
|
||||
test(
|
||||
fun() {
|
||||
},
|
||||
)
|
||||
test(fun test() {})
|
||||
test(fun test() = 5)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user