]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/panic_in_result_fn_assertions.stderr
Auto merge of #101969 - reez12g:issue-101306, r=reez12g
[rust.git] / src / tools / clippy / tests / ui / panic_in_result_fn_assertions.stderr
1 error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
2   --> $DIR/panic_in_result_fn_assertions.rs:7:5
3    |
4 LL | /     fn result_with_assert_with_message(x: i32) -> Result<bool, String> // should emit lint
5 LL | |     {
6 LL | |         assert!(x == 5, "wrong argument");
7 LL | |         Ok(true)
8 LL | |     }
9    | |_____^
10    |
11    = note: `-D clippy::panic-in-result-fn` implied by `-D warnings`
12    = help: `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertions should not be used in a function that returns `Result` as `Result` is expected to return an error instead of crashing
13 note: return Err() instead of panicking
14   --> $DIR/panic_in_result_fn_assertions.rs:9:9
15    |
16 LL |         assert!(x == 5, "wrong argument");
17    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18
19 error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
20   --> $DIR/panic_in_result_fn_assertions.rs:13:5
21    |
22 LL | /     fn result_with_assert_eq(x: i32) -> Result<bool, String> // should emit lint
23 LL | |     {
24 LL | |         assert_eq!(x, 5);
25 LL | |         Ok(true)
26 LL | |     }
27    | |_____^
28    |
29    = help: `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertions should not be used in a function that returns `Result` as `Result` is expected to return an error instead of crashing
30 note: return Err() instead of panicking
31   --> $DIR/panic_in_result_fn_assertions.rs:15:9
32    |
33 LL |         assert_eq!(x, 5);
34    |         ^^^^^^^^^^^^^^^^
35
36 error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
37   --> $DIR/panic_in_result_fn_assertions.rs:19:5
38    |
39 LL | /     fn result_with_assert_ne(x: i32) -> Result<bool, String> // should emit lint
40 LL | |     {
41 LL | |         assert_ne!(x, 1);
42 LL | |         Ok(true)
43 LL | |     }
44    | |_____^
45    |
46    = help: `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertions should not be used in a function that returns `Result` as `Result` is expected to return an error instead of crashing
47 note: return Err() instead of panicking
48   --> $DIR/panic_in_result_fn_assertions.rs:21:9
49    |
50 LL |         assert_ne!(x, 1);
51    |         ^^^^^^^^^^^^^^^^
52
53 error: aborting due to 3 previous errors
54