Skip to content

Commit c3443de

Browse files
committed
Swift: Document that tests disabled with Swift 6.1 are still broken with 6.2
1 parent a79d73a commit c3443de

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

swift/ql/test/extractor-tests/generated/decl/ParamDecl/param_decls.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ func closures() {
4747
func f2(
4848
@Wrapper p1: Int,
4949
@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
5252
) {}

swift/ql/test/extractor-tests/generated/expr/AppliedPropertyWrapperExpr/applied_property_wrapper.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
}
1111

1212
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
1414
) {}
1515

1616
// foo(x: 42)
1717
// foo($x: true)
1818

1919
let closure = {
2020
(
21-
// @Wrapper y: Int // Disabled causes crashes with Swift 6.1
21+
// @Wrapper y: Int // Disabled causes crashes with Swift 6.1/6.2
2222
) in return
2323
}
2424

0 commit comments

Comments
 (0)