rust/tests/ui/exit2.stderr

12 lines
291 B
Plaintext
Raw Normal View History

2019-10-18 21:09:42 +02:00
error: usage of `process::exit`
2019-10-29 21:34:00 +01:00
--> $DIR/exit2.rs:4:5
2019-10-18 21:09:42 +02:00
|
2019-10-19 14:31:02 +02:00
LL | std::process::exit(3);
2019-10-18 21:09:42 +02:00
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::exit` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::exit)]`
2019-10-18 21:09:42 +02:00
error: aborting due to 1 previous error
2019-10-18 21:09:42 +02:00