File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,6 @@ func closures() {
47
47
func f2(
48
48
@Wrapper p1: Int ,
49
49
@WrapperWithInit p2: Int ,
50
- // @WrapperWithProjected p3: Int, // Disabled causes crashes with Swift 6.1
51
- // @WrapperWithProjectedAndInit p4: Int // Disabled causes crashes with Swift 6.1
50
+ // @WrapperWithProjected p3: Int, // Disabled causes crashes with Swift 6.1/6.2
51
+ // @WrapperWithProjectedAndInit p4: Int // Disabled causes crashes with Swift 6.1/6.2
52
52
) { }
Original file line number Diff line number Diff line change 10
10
}
11
11
12
12
func foo(
13
- // @Wrapper x: Int // Disabled causes crashes with Swift 6.1
13
+ // @Wrapper x: Int // Disabled causes crashes with Swift 6.1/6.2
14
14
) { }
15
15
16
16
// foo(x: 42)
17
17
// foo($x: true)
18
18
19
19
let closure = {
20
20
(
21
- // @Wrapper y: Int // Disabled causes crashes with Swift 6.1
21
+ // @Wrapper y: Int // Disabled causes crashes with Swift 6.1/6.2
22
22
) in return
23
23
}
24
24
You can’t perform that action at this time.
0 commit comments