Formatter: support trailing comma in value parameters
#KT-34744
This commit is contained in:
+4
-2
@@ -28,8 +28,10 @@ fun test() {
|
||||
test(fun test() = 4)
|
||||
}
|
||||
|
||||
fun d = fun(a: Int,
|
||||
b: String) {
|
||||
fun d = fun(
|
||||
a: Int,
|
||||
b: String,
|
||||
) {
|
||||
}
|
||||
|
||||
fun e = fun() {
|
||||
|
||||
Reference in New Issue
Block a user