2021-05-06 04:51:22 -05:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/crashes/ice-7169.rs:10:12
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
LL | if let Ok(_) = Ok::<_, ()>(A::<String>::default()) {}
|
2023-07-17 03:19:29 -05:00
|
|
|
| -------^^^^^-------------------------------------- help: try: `if Ok::<_, ()>(A::<String>::default()).is_ok()`
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::redundant_pattern_matching)]`
|
2021-05-06 04:51:22 -05:00
|
|
|
|
2023-11-21 11:08:42 -06:00
|
|
|
error: aborting due to 1 previous error
|
2021-05-06 04:51:22 -05:00
|
|
|
|