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
Emit a diagnostic if an exit test's body closure includes a capture list. (#1046)
This PR adds a custom diagnostic for `#expect(exitsWith:)` if the passed
closure visibly closes over any state (via a capture list). For example:
```swift
await #expect(exitsWith: .failure) { [x] in
// ...
}
```
Produces:
> 🛑 Cannot specify a capture clause in closure passed to
'#expect(exitsWith:_:)'
With a fix-it to remove the capture list.
### Checklist:
- [x] Code and documentation should follow the style of the [Style
Guide](https://github.com/apple/swift-testing/blob/main/Documentation/StyleGuide.md).
- [x] If public symbols are renamed or modified, DocC references should
be updated.
0 commit comments