Skip to content

Commit fa22f12

Browse files
committed
1 parent a84f5c8 commit fa22f12

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

test/swift-files/indent/expressions.swift

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -569,3 +569,20 @@ foo[
569569

570570
foo
571571
[1] // this is not a subscript expression
572+
573+
574+
// Multiple Trailing Closures
575+
// https://github.com/apple/swift-evolution/blob/master/proposals/0279-multiple-trailing-closures.md
576+
577+
let x = foo
578+
.bar {
579+
aaa()
580+
} baz: {
581+
aaa()
582+
}
583+
584+
let x = foo.bar {
585+
aaa()
586+
} baz: {
587+
aaa()
588+
}

0 commit comments

Comments
 (0)