]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/match_wild_err_arm.stderr
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / match_wild_err_arm.stderr
CommitLineData
f20569fa
XL
1error: `Err(_)` matches all errors
2 --> $DIR/match_wild_err_arm.rs:11:9
3 |
4LL | Err(_) => panic!("err"),
5 | ^^^^^^
6 |
7 = note: `-D clippy::match-wild-err-arm` implied by `-D warnings`
8 = note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable
9
10error: `Err(_)` matches all errors
11 --> $DIR/match_wild_err_arm.rs:17:9
12 |
13LL | Err(_) => panic!(),
14 | ^^^^^^
15 |
16 = note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable
17
18error: `Err(_)` matches all errors
19 --> $DIR/match_wild_err_arm.rs:23:9
20 |
21LL | Err(_) => {
22 | ^^^^^^
23 |
24 = note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable
25
26error: `Err(_e)` matches all errors
27 --> $DIR/match_wild_err_arm.rs:31:9
28 |
29LL | Err(_e) => panic!(),
30 | ^^^^^^^
31 |
32 = note: match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable
33
34error: aborting due to 4 previous errors
35