]> git.lizzy.rs Git - rust.git/blob - tests/ui/panic_in_result_fn_assertions.stderr
Auto merge of #9684 - kraktus:ref_option_ref, r=xFrednet
[rust.git] / 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    = 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
12 note: return Err() instead of panicking
13   --> $DIR/panic_in_result_fn_assertions.rs:9:9
14    |
15 LL |         assert!(x == 5, "wrong argument");
16    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
17    = note: `-D clippy::panic-in-result-fn` implied by `-D warnings`
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