]> git.lizzy.rs Git - rust.git/blob - src/test/ui/reachable/expr_match.stderr
Merge commit '8da837185714cefbb261e93e9846afb11c1dc60e' into sync-rustfmt-subtree
[rust.git] / src / test / ui / reachable / expr_match.stderr
1 error: unreachable statement
2   --> $DIR/expr_match.rs:8:5
3    |
4 LL |     match () { () => return }
5    |     ------------------------- any code following this `match` expression is unreachable, as all arms diverge
6 LL |     println!("I am dead");
7    |     ^^^^^^^^^^^^^^^^^^^^^ unreachable statement
8    |
9 note: the lint level is defined here
10   --> $DIR/expr_match.rs:4:9
11    |
12 LL | #![deny(unreachable_code)]
13    |         ^^^^^^^^^^^^^^^^
14    = note: this error originates in the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
15
16 error: unreachable statement
17   --> $DIR/expr_match.rs:19:5
18    |
19 LL |     match () { () if false => return, () => return }
20    |     ------------------------------------------------ any code following this `match` expression is unreachable, as all arms diverge
21 LL |     println!("I am dead");
22    |     ^^^^^^^^^^^^^^^^^^^^^ unreachable statement
23    |
24    = note: this error originates in the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
25
26 error: aborting due to 2 previous errors
27