rust/src/test/ui/reachable/expr_match.stderr

24 lines
725 B
Plaintext
Raw Normal View History

2018-10-16 12:04:07 -05:00
error: unreachable statement
2018-12-25 09:56:47 -06:00
--> $DIR/expr_match.rs:8:5
|
2018-10-16 12:04:07 -05:00
LL | println!("I am dead");
| ^^^^^^^^^^^^^^^^^^^^^^
|
note: lint level defined here
2018-12-25 09:56:47 -06:00
--> $DIR/expr_match.rs:4:9
|
2018-02-22 18:42:32 -06:00
LL | #![deny(unreachable_code)]
| ^^^^^^^^^^^^^^^^
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
error: unreachable statement
2018-12-25 09:56:47 -06:00
--> $DIR/expr_match.rs:19:5
|
2018-02-22 18:42:32 -06:00
LL | println!("I am dead");
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
2018-10-16 12:04:07 -05:00
error: aborting due to 2 previous errors