rust/tests/ui/match_same_arms_non_exhaustive.stderr

31 lines
1.1 KiB
Plaintext
Raw Normal View History

error: this match arm has an identical body to the `_` wildcard arm
2024-02-17 06:16:29 -06:00
--> tests/ui/match_same_arms_non_exhaustive.rs:45:9
|
LL | Ordering::AcqRel | Ordering::SeqCst => repeat(),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try removing the arm
|
= help: or try changing either arm body
note: `_` wildcard arm here
2024-02-17 06:16:29 -06:00
--> tests/ui/match_same_arms_non_exhaustive.rs:47:9
|
LL | _ => repeat(),
| ^^^^^^^^^^^^^
= note: `-D clippy::match-same-arms` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::match_same_arms)]`
error: this match arm has an identical body to the `_` wildcard arm
2024-02-17 06:16:29 -06:00
--> tests/ui/match_same_arms_non_exhaustive.rs:59:13
|
LL | Ordering::AcqRel | Ordering::SeqCst => repeat(),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try removing the arm
|
= help: or try changing either arm body
note: `_` wildcard arm here
2024-02-17 06:16:29 -06:00
--> tests/ui/match_same_arms_non_exhaustive.rs:61:13
|
LL | _ => repeat(),
| ^^^^^^^^^^^^^
error: aborting due to 2 previous errors