@@ -220,14 +220,14 @@ public macro Test<C>(
220220/// During testing, the associated test function is called once for each element
221221/// in `collection`.
222222///
223+ /// @Comment {
224+ /// - Bug: The testing library should support variadic generics.
225+ /// ([103416861](rdar://103416861))
226+ /// }
227+ ///
223228/// ## See Also
224229///
225230/// - <doc:DefiningTests>
226- //
227- // @Comment {
228- // - Bug: The testing library should support variadic generics.
229- // ([103416861](rdar://103416861))
230- // }
231231@attached ( peer) public macro Test< C> (
232232 _ displayName: _const String? = nil ,
233233 _ traits: any TestTrait ... ,
@@ -273,14 +273,14 @@ extension Test {
273273/// During testing, the associated test function is called once for each pair of
274274/// elements in `collection1` and `collection2`.
275275///
276+ /// @Comment {
277+ /// - Bug: The testing library should support variadic generics.
278+ /// ([103416861](rdar://103416861))
279+ /// }
280+ ///
276281/// ## See Also
277282///
278283/// - <doc:DefiningTests>
279- //
280- // @Comment {
281- // - Bug: The testing library should support variadic generics.
282- // ([103416861](rdar://103416861))
283- // }
284284@attached ( peer)
285285@_documentation ( visibility: private)
286286public macro Test< C1, C2> (
@@ -301,14 +301,14 @@ public macro Test<C1, C2>(
301301/// During testing, the associated test function is called once for each pair of
302302/// elements in `collection1` and `collection2`.
303303///
304+ /// @Comment {
305+ /// - Bug: The testing library should support variadic generics.
306+ /// ([103416861](rdar://103416861))
307+ /// }
308+ ///
304309/// ## See Also
305310///
306311/// - <doc:DefiningTests>
307- //
308- // @Comment {
309- // - Bug: The testing library should support variadic generics.
310- // ([103416861](rdar://103416861))
311- // }
312312@attached ( peer) public macro Test< C1, C2> (
313313 _ displayName: _const String? = nil ,
314314 _ traits: any TestTrait ... ,
@@ -327,14 +327,14 @@ public macro Test<C1, C2>(
327327/// During testing, the associated test function is called once for each element
328328/// in `zippedCollections`.
329329///
330+ /// @Comment {
331+ /// - Bug: The testing library should support variadic generics.
332+ /// ([103416861](rdar://103416861))
333+ /// }
334+ ///
330335/// ## See Also
331336///
332337/// - <doc:DefiningTests>
333- //
334- // @Comment {
335- // - Bug: The testing library should support variadic generics.
336- // ([103416861](rdar://103416861))
337- // }
338338@attached ( peer)
339339@_documentation ( visibility: private)
340340public macro Test< C1, C2> (
@@ -355,14 +355,14 @@ public macro Test<C1, C2>(
355355/// During testing, the associated test function is called once for each element
356356/// in `zippedCollections`.
357357///
358+ /// @Comment {
359+ /// - Bug: The testing library should support variadic generics.
360+ /// ([103416861](rdar://103416861))
361+ /// }
362+ ///
358363/// ## See Also
359364///
360365/// - <doc:DefiningTests>
361- //
362- // @Comment {
363- // - Bug: The testing library should support variadic generics.
364- // ([103416861](rdar://103416861))
365- // }
366366@attached ( peer) public macro Test< C1, C2> (
367367 _ displayName: _const String? = nil ,
368368 _ traits: any TestTrait ... ,
0 commit comments