summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/match_same_arms_non_exhaustive.stderr
blob: ae6b02ab1b50714fb7f06c969d26e4308a363111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
error: this match arm has an identical body to the `_` wildcard arm
  --> $DIR/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
  --> $DIR/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
  --> $DIR/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
  --> $DIR/match_same_arms_non_exhaustive.rs:61:13
   |
LL |             _ => repeat(),
   |             ^^^^^^^^^^^^^

error: aborting due to 2 previous errors