rust-clippy/tests/ui/panicking_macros.stderr

107 lines
2.9 KiB
Text
Raw Normal View History

2019-10-16 17:43:26 +00:00
error: `panic` should not be present in production code
--> $DIR/panicking_macros.rs:23:5
2019-10-16 17:43:26 +00:00
|
LL | panic!();
| ^^^^^^^^
2019-10-16 17:43:26 +00:00
|
= note: `-D clippy::panic` implied by `-D warnings`
error: `panic` should not be present in production code
--> $DIR/panicking_macros.rs:24:5
|
LL | panic!("message");
| ^^^^^^^^^^^^^^^^^
error: `panic` should not be present in production code
--> $DIR/panicking_macros.rs:25:5
|
LL | panic!("{} {}", "panic with", "multiple arguments");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-16 17:43:26 +00:00
error: `todo` should not be present in production code
--> $DIR/panicking_macros.rs:31:5
2019-10-16 17:43:26 +00:00
|
LL | todo!();
| ^^^^^^^
2019-10-16 17:43:26 +00:00
|
= note: `-D clippy::todo` implied by `-D warnings`
error: `todo` should not be present in production code
--> $DIR/panicking_macros.rs:32:5
|
LL | todo!("message");
| ^^^^^^^^^^^^^^^^
error: `todo` should not be present in production code
--> $DIR/panicking_macros.rs:33:5
|
LL | todo!("{} {}", "panic with", "multiple arguments");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-16 17:43:26 +00:00
error: `unimplemented` should not be present in production code
--> $DIR/panicking_macros.rs:39:5
2019-10-16 17:43:26 +00:00
|
LL | unimplemented!();
| ^^^^^^^^^^^^^^^^
2019-10-16 17:43:26 +00:00
|
= note: `-D clippy::unimplemented` implied by `-D warnings`
error: `unimplemented` should not be present in production code
--> $DIR/panicking_macros.rs:40:5
|
LL | unimplemented!("message");
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error: `unimplemented` should not be present in production code
--> $DIR/panicking_macros.rs:41:5
2019-10-16 17:43:26 +00:00
|
LL | unimplemented!("{} {}", "panic with", "multiple arguments");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: usage of the `unreachable!` macro
--> $DIR/panicking_macros.rs:47:5
|
2019-10-16 17:43:26 +00:00
LL | unreachable!();
| ^^^^^^^^^^^^^^
2019-10-16 17:43:26 +00:00
|
= note: `-D clippy::unreachable` implied by `-D warnings`
error: usage of the `unreachable!` macro
--> $DIR/panicking_macros.rs:48:5
|
LL | unreachable!("message");
| ^^^^^^^^^^^^^^^^^^^^^^^
error: usage of the `unreachable!` macro
--> $DIR/panicking_macros.rs:49:5
|
LL | unreachable!("{} {}", "panic with", "multiple arguments");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: `panic` should not be present in production code
--> $DIR/panicking_macros.rs:55:5
|
LL | panic!();
| ^^^^^^^^
error: `todo` should not be present in production code
--> $DIR/panicking_macros.rs:56:5
|
LL | todo!();
| ^^^^^^^
error: `unimplemented` should not be present in production code
--> $DIR/panicking_macros.rs:57:5
|
LL | unimplemented!();
| ^^^^^^^^^^^^^^^^
error: usage of the `unreachable!` macro
--> $DIR/panicking_macros.rs:58:5
|
LL | unreachable!();
| ^^^^^^^^^^^^^^
error: aborting due to 16 previous errors
2019-10-16 17:43:26 +00:00