Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Silence a warning on the latest 6.2-dev toolchain when building a tes…
…t. (#969) We are getting a (sort of spurious but also not really) warning when building a test where we have a particularly weird bit of code: ```swift func f() -> Never? { nil } try #require(f()) //⚠️ warning: will never be executed ``` The code in question _will_ be executed, but will always throw an `ExpectationFailedError`. The compiler's getting a bit confused because the expansion of the macro includes a call to a function that returns `T`, where `T` is the type of the expression being unwrapped. Since `T` is `Never` in this context, the compiler infers that that function does not return. The compiler's inference is correct, but it's unclear what exactly it thinks will never be executed here. In any event, the warning is spurious and does not indicate a problem with the test, so I'm changing the return type of the problematic function from `Never?` to `Int?` to make the compiler happy. ### 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.
- Loading branch information