mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-18 02:38:28 +00:00
4698b366c4
When there are multiple macros in use, it can be difficult to tell which one was responsible for producing an error.
114 lines
3.4 KiB
Text
114 lines
3.4 KiB
Text
error: docs for function which may panic missing `# Panics` section
|
|
--> $DIR/missing_panics_doc.rs:7:1
|
|
|
|
|
LL | / pub fn unwrap() {
|
|
LL | | let result = Err("Hi");
|
|
LL | | result.unwrap()
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= note: `-D clippy::missing-panics-doc` implied by `-D warnings`
|
|
note: first possible panic found here
|
|
--> $DIR/missing_panics_doc.rs:9:5
|
|
|
|
|
LL | result.unwrap()
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error: docs for function which may panic missing `# Panics` section
|
|
--> $DIR/missing_panics_doc.rs:13:1
|
|
|
|
|
LL | / pub fn panic() {
|
|
LL | | panic!("This function panics")
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
note: first possible panic found here
|
|
--> $DIR/missing_panics_doc.rs:14:5
|
|
|
|
|
LL | panic!("This function panics")
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
= note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: docs for function which may panic missing `# Panics` section
|
|
--> $DIR/missing_panics_doc.rs:18:1
|
|
|
|
|
LL | / pub fn todo() {
|
|
LL | | todo!()
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
note: first possible panic found here
|
|
--> $DIR/missing_panics_doc.rs:19:5
|
|
|
|
|
LL | todo!()
|
|
| ^^^^^^^
|
|
= note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: docs for function which may panic missing `# Panics` section
|
|
--> $DIR/missing_panics_doc.rs:23:1
|
|
|
|
|
LL | / pub fn inner_body(opt: Option<u32>) {
|
|
LL | | opt.map(|x| {
|
|
LL | | if x == 10 {
|
|
LL | | panic!()
|
|
LL | | }
|
|
LL | | });
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
note: first possible panic found here
|
|
--> $DIR/missing_panics_doc.rs:26:13
|
|
|
|
|
LL | panic!()
|
|
| ^^^^^^^^
|
|
= note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: docs for function which may panic missing `# Panics` section
|
|
--> $DIR/missing_panics_doc.rs:32:1
|
|
|
|
|
LL | / pub fn unreachable_and_panic() {
|
|
LL | | if true { unreachable!() } else { panic!() }
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
note: first possible panic found here
|
|
--> $DIR/missing_panics_doc.rs:33:39
|
|
|
|
|
LL | if true { unreachable!() } else { panic!() }
|
|
| ^^^^^^^^
|
|
= note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: docs for function which may panic missing `# Panics` section
|
|
--> $DIR/missing_panics_doc.rs:37:1
|
|
|
|
|
LL | / pub fn assert_eq() {
|
|
LL | | let x = 0;
|
|
LL | | assert_eq!(x, 0);
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
note: first possible panic found here
|
|
--> $DIR/missing_panics_doc.rs:39:5
|
|
|
|
|
LL | assert_eq!(x, 0);
|
|
| ^^^^^^^^^^^^^^^^^
|
|
= note: this error originates in the macro `assert_eq` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: docs for function which may panic missing `# Panics` section
|
|
--> $DIR/missing_panics_doc.rs:43:1
|
|
|
|
|
LL | / pub fn assert_ne() {
|
|
LL | | let x = 0;
|
|
LL | | assert_ne!(x, 0);
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
note: first possible panic found here
|
|
--> $DIR/missing_panics_doc.rs:45:5
|
|
|
|
|
LL | assert_ne!(x, 0);
|
|
| ^^^^^^^^^^^^^^^^^
|
|
= note: this error originates in the macro `assert_ne` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: aborting due to 7 previous errors
|
|
|