Update ApplicationEExpWriter to resolve macro IDs up-front #3338
GitHub Actions / clippy
failed
May 12, 2025 in 0s
clippy
1 error
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 1 |
Warning | 0 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.86.0 (05f9846f8 2025-03-31)
- cargo 1.86.0 (adf9b6ad1 2025-02-28)
- clippy 0.1.86 (05f9846f89 2025-03-31)
Annotations
Check failure on line 444 in tests/conformance_dsl/fragment.rs
github-actions / clippy
redundant pattern matching, consider using `is_some()`
error: redundant pattern matching, consider using `is_some()`
--> tests/conformance_dsl/fragment.rs:444:19
|
444 | while let Some(_) = reader.next()? {}
| ----------^^^^^^^----------------- help: try: `while (reader.next()?).is_some()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::redundant_pattern_matching)]`
Loading