Swift: Document that tests disabled with Swift 6.1 are still broken with 6.2

This commit is contained in:
Jeroen Ketema
2025-09-17 11:33:35 +02:00
parent b50ffe2e0c
commit 192c9c3820
2 changed files with 4 additions and 4 deletions

View File

@@ -47,6 +47,6 @@ func closures() {
func f2(
@Wrapper p1: Int,
@WrapperWithInit p2: Int,
// @WrapperWithProjected p3: Int, // Disabled causes crashes with Swift 6.1
// @WrapperWithProjectedAndInit p4: Int // Disabled causes crashes with Swift 6.1
// @WrapperWithProjected p3: Int, // Disabled causes crashes with Swift 6.1/6.2
// @WrapperWithProjectedAndInit p4: Int // Disabled causes crashes with Swift 6.1/6.2
) {}

View File

@@ -10,7 +10,7 @@
}
func foo(
// @Wrapper x: Int // Disabled causes crashes with Swift 6.1
// @Wrapper x: Int // Disabled causes crashes with Swift 6.1/6.2
) {}
// foo(x: 42)
@@ -18,7 +18,7 @@ func foo(
let closure = {
(
// @Wrapper y: Int // Disabled causes crashes with Swift 6.1
// @Wrapper y: Int // Disabled causes crashes with Swift 6.1/6.2
) in return
}