rust-clippy/tests/ui/missing_panics_doc.stderr

83 lines
2.3 KiB
Text
Raw Normal View History

2020-12-30 22:37:59 +00:00
error: docs for function which may panic missing `# Panics` section
2021-03-29 07:19:52 +00:00
--> $DIR/missing_panics_doc.rs:7:1
2020-12-30 22:37:59 +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-03-29 07:19:52 +00:00
--> $DIR/missing_panics_doc.rs:9:5
2020-12-30 22:37:59 +00:00
|
LL | result.unwrap()
| ^^^^^^^^^^^^^^^
error: docs for function which may panic missing `# Panics` section
2021-03-29 07:19:52 +00:00
--> $DIR/missing_panics_doc.rs:13:1
2020-12-30 22:37:59 +00:00
|
LL | / pub fn panic() {
LL | | panic!("This function panics")
LL | | }
| |_^
|
note: first possible panic found here
2021-03-29 07:19:52 +00:00
--> $DIR/missing_panics_doc.rs:14:5
2020-12-30 22:37:59 +00:00
|
LL | panic!("This function panics")
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: docs for function which may panic missing `# Panics` section
2021-03-29 07:19:52 +00:00
--> $DIR/missing_panics_doc.rs:18:1
2020-12-30 22:37:59 +00:00
|
LL | / pub fn todo() {
LL | | todo!()
LL | | }
| |_^
|
note: first possible panic found here
2021-03-29 07:19:52 +00:00
--> $DIR/missing_panics_doc.rs:19:5
2020-12-30 22:37:59 +00:00
|
LL | todo!()
| ^^^^^^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: docs for function which may panic missing `# Panics` section
2021-03-29 07:19:52 +00:00
--> $DIR/missing_panics_doc.rs:23:1
2020-12-30 22:37:59 +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-03-29 07:19:52 +00:00
--> $DIR/missing_panics_doc.rs:26:13
2020-12-30 22:37:59 +00:00
|
LL | panic!()
| ^^^^^^^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: docs for function which may panic missing `# Panics` section
2021-03-29 07:19:52 +00:00
--> $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
2021-03-29 07:19:52 +00:00
--> $DIR/missing_panics_doc.rs:33:39
|
LL | if true { unreachable!() } else { panic!() }
| ^^^^^^^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to 5 previous errors
2020-12-30 22:37:59 +00:00