mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
110 lines
3.2 KiB
Text
110 lines
3.2 KiB
Text
error: `panic` should not be present in production code
|
|
--> tests/ui/panicking_macros.rs:22:5
|
|
|
|
|
LL | panic!();
|
|
| ^^^^^^^^
|
|
|
|
|
= note: `-D clippy::panic` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::panic)]`
|
|
|
|
error: `panic` should not be present in production code
|
|
--> tests/ui/panicking_macros.rs:25:5
|
|
|
|
|
LL | panic!("message");
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: `panic` should not be present in production code
|
|
--> tests/ui/panicking_macros.rs:27:5
|
|
|
|
|
LL | panic!("{} {}", "panic with", "multiple arguments");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: `todo` should not be present in production code
|
|
--> tests/ui/panicking_macros.rs:34:5
|
|
|
|
|
LL | todo!();
|
|
| ^^^^^^^
|
|
|
|
|
= note: `-D clippy::todo` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::todo)]`
|
|
|
|
error: `todo` should not be present in production code
|
|
--> tests/ui/panicking_macros.rs:37:5
|
|
|
|
|
LL | todo!("message");
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: `todo` should not be present in production code
|
|
--> tests/ui/panicking_macros.rs:39:5
|
|
|
|
|
LL | todo!("{} {}", "panic with", "multiple arguments");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: `unimplemented` should not be present in production code
|
|
--> tests/ui/panicking_macros.rs:46:5
|
|
|
|
|
LL | unimplemented!();
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::unimplemented` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::unimplemented)]`
|
|
|
|
error: `unimplemented` should not be present in production code
|
|
--> tests/ui/panicking_macros.rs:49:5
|
|
|
|
|
LL | unimplemented!("message");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: `unimplemented` should not be present in production code
|
|
--> tests/ui/panicking_macros.rs:51:5
|
|
|
|
|
LL | unimplemented!("{} {}", "panic with", "multiple arguments");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: usage of the `unreachable!` macro
|
|
--> tests/ui/panicking_macros.rs:58:5
|
|
|
|
|
LL | unreachable!();
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::unreachable` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::unreachable)]`
|
|
|
|
error: usage of the `unreachable!` macro
|
|
--> tests/ui/panicking_macros.rs:61:5
|
|
|
|
|
LL | unreachable!("message");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: usage of the `unreachable!` macro
|
|
--> tests/ui/panicking_macros.rs:63:5
|
|
|
|
|
LL | unreachable!("{} {}", "panic with", "multiple arguments");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: `panic` should not be present in production code
|
|
--> tests/ui/panicking_macros.rs:70:5
|
|
|
|
|
LL | panic!();
|
|
| ^^^^^^^^
|
|
|
|
error: `todo` should not be present in production code
|
|
--> tests/ui/panicking_macros.rs:72:5
|
|
|
|
|
LL | todo!();
|
|
| ^^^^^^^
|
|
|
|
error: `unimplemented` should not be present in production code
|
|
--> tests/ui/panicking_macros.rs:74:5
|
|
|
|
|
LL | unimplemented!();
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: usage of the `unreachable!` macro
|
|
--> tests/ui/panicking_macros.rs:76:5
|
|
|
|
|
LL | unreachable!();
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 16 previous errors
|
|
|