You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: Verify this will cause release/6.0 CI to fail
17
+
@Test(
18
+
".enabled trait",
19
+
.enabled {true},
20
+
.bug("https://github.com/swiftlang/swift/issues/76409","Verify the custom trait with closure causes @Test macro to fail is fixed")
21
+
)
22
+
func enabledTraitClosure()throws{}
23
+
// #endif
24
+
25
+
@Test(
26
+
".enabled if trait",
27
+
.enabled(if:true)
28
+
)
29
+
func enabledTraitIf()throws{}
30
+
31
+
#if compiler(>=6.1)
32
+
@Test(
33
+
".disabled trait",
34
+
.disabled {false},
35
+
.bug("https://github.com/swiftlang/swift/issues/76409","Verify the custom trait with closure causes @Test macro to fail is fixed")
0 commit comments