Skip to content

Commit 20f0b46

Browse files
committed
Fix whitespaces for a closure
1 parent 5ce5d24 commit 20f0b46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/SILGen/coverage_member_closure.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ class C {
1010

1111
// Closures in members show up at the end of the constructor's map.
1212
// CHECK-NOT: sil_coverage_map
13-
// CHECK: [[@LINE+1]]:55 -> [[@LINE+1]]:77 : 2
14-
var completionHandler: (String, [String]) -> Void = {(foo, bar) in return}
13+
// CHECK: [[@LINE+1]]:55 -> [[@LINE+1]]:79 : 2
14+
var completionHandler: (String, [String]) -> Void = { (foo, bar) in return }
1515
}

0 commit comments

Comments
 (0)