2021-02-03 04:43:30 +00:00
|
|
|
error: docs for function which may panic missing `# Panics` section
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:6:1
|
2021-02-03 04:43:30 +00:00
|
|
|
|
|
|
|
|
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
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:8:5
|
2021-02-03 04:43:30 +00:00
|
|
|
|
|
|
|
|
LL | result.unwrap()
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: docs for function which may panic missing `# Panics` section
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:12:1
|
2021-02-03 04:43:30 +00:00
|
|
|
|
|
|
|
|
LL | / pub fn panic() {
|
|
|
|
LL | | panic!("This function panics")
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: first possible panic found here
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:13:5
|
2021-02-03 04:43:30 +00:00
|
|
|
|
|
|
|
|
LL | panic!("This function panics")
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: docs for function which may panic missing `# Panics` section
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:17:1
|
2021-02-03 04:43:30 +00:00
|
|
|
|
|
|
|
|
LL | / pub fn todo() {
|
|
|
|
LL | | todo!()
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: first possible panic found here
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:18:5
|
2021-02-03 04:43:30 +00:00
|
|
|
|
|
|
|
|
LL | todo!()
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: docs for function which may panic missing `# Panics` section
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:22:1
|
2021-02-03 04:43:30 +00:00
|
|
|
|
|
|
|
|
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
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:25:13
|
2021-02-03 04:43:30 +00:00
|
|
|
|
|
|
|
|
LL | panic!()
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
2021-02-25 10:25:22 +00:00
|
|
|
error: docs for function which may panic missing `# Panics` section
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:31:1
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
|
LL | / pub fn unreachable_and_panic() {
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | | if true { unreachable!() } else { panic!() }
|
2021-02-25 10:25:22 +00:00
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: first possible panic found here
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:32:39
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | if true { unreachable!() } else { panic!() }
|
|
|
|
| ^^^^^^^^
|
2021-02-25 10:25:22 +00:00
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
error: docs for function which may panic missing `# Panics` section
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:36:1
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
|
LL | / pub fn assert_eq() {
|
|
|
|
LL | | let x = 0;
|
|
|
|
LL | | assert_eq!(x, 0);
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: first possible panic found here
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:38:5
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
|
LL | assert_eq!(x, 0);
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
error: docs for function which may panic missing `# Panics` section
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:42:1
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
|
LL | / pub fn assert_ne() {
|
|
|
|
LL | | let x = 0;
|
|
|
|
LL | | assert_ne!(x, 0);
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: first possible panic found here
|
2021-11-04 12:52:36 +00:00
|
|
|
--> $DIR/missing_panics_doc.rs:44:5
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
|
LL | assert_ne!(x, 0);
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
2021-02-03 04:43:30 +00:00
|
|
|
|