For e.g:
@Test(arguments: [0])
func foo(`a b`: Int) {}
the macro expansion for @Test forgets to include backticks for the argument labels in the calls it generates:
_ = unsafe try await Testing.__requiringUnsafe(Testing.__requiringTry(Testing.__requiringAwait(foo(a b: arg0))))
For e.g:
the macro expansion for
@Testforgets to include backticks for the argument labels in the calls it generates: