]> git.lizzy.rs Git - rust.git/blob - tests/ui/fallible_impl_from.stderr
Merge branch 'master' into rustfmt_tests
[rust.git] / tests / ui / fallible_impl_from.stderr
1 error: consider implementing `TryFrom` instead
2   --> $DIR/fallible_impl_from.rs:14:1
3    |
4 14 | / impl From<String> for Foo {
5 15 | |     fn from(s: String) -> Self {
6 16 | |         Foo(s.parse().unwrap())
7 17 | |     }
8 18 | | }
9    | |_^
10    |
11 note: lint level defined here
12   --> $DIR/fallible_impl_from.rs:10:9
13    |
14 10 | #![deny(clippy::fallible_impl_from)]
15    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
16    = help: `From` is intended for infallible conversions only. Use `TryFrom` if there's a possibility for the conversion to fail.
17 note: potential failure(s)
18   --> $DIR/fallible_impl_from.rs:16:13
19    |
20 16 |         Foo(s.parse().unwrap())
21    |             ^^^^^^^^^^^^^^^^^^
22
23 error: consider implementing `TryFrom` instead
24   --> $DIR/fallible_impl_from.rs:35:1
25    |
26 35 | / impl From<usize> for Invalid {
27 36 | |     fn from(i: usize) -> Invalid {
28 37 | |         if i != 42 {
29 38 | |             panic!();
30 ...  |
31 41 | |     }
32 42 | | }
33    | |_^
34    |
35    = help: `From` is intended for infallible conversions only. Use `TryFrom` if there's a possibility for the conversion to fail.
36 note: potential failure(s)
37   --> $DIR/fallible_impl_from.rs:38:13
38    |
39 38 |             panic!();
40    |             ^^^^^^^^^
41    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
42
43 error: consider implementing `TryFrom` instead
44   --> $DIR/fallible_impl_from.rs:44:1
45    |
46 44 | / impl From<Option<String>> for Invalid {
47 45 | |     fn from(s: Option<String>) -> Invalid {
48 46 | |         let s = s.unwrap();
49 47 | |         if !s.is_empty() {
50 ...  |
51 53 | |     }
52 54 | | }
53    | |_^
54    |
55    = help: `From` is intended for infallible conversions only. Use `TryFrom` if there's a possibility for the conversion to fail.
56 note: potential failure(s)
57   --> $DIR/fallible_impl_from.rs:46:17
58    |
59 46 |         let s = s.unwrap();
60    |                 ^^^^^^^^^^
61 47 |         if !s.is_empty() {
62 48 |             panic!(42);
63    |             ^^^^^^^^^^^
64 49 |         } else if s.parse::<u32>().unwrap() != 42 {
65    |                   ^^^^^^^^^^^^^^^^^^^^^^^^^
66 50 |             panic!("{:?}", s);
67    |             ^^^^^^^^^^^^^^^^^^
68    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
69
70 error: consider implementing `TryFrom` instead
71   --> $DIR/fallible_impl_from.rs:62:1
72    |
73 62 | / impl<'a> From<&'a mut <Box<u32> as ProjStrTrait>::ProjString> for Invalid {
74 63 | |     fn from(s: &'a mut <Box<u32> as ProjStrTrait>::ProjString) -> Invalid {
75 64 | |         if s.parse::<u32>().ok().unwrap() != 42 {
76 65 | |             panic!("{:?}", s);
77 ...  |
78 68 | |     }
79 69 | | }
80    | |_^
81    |
82    = help: `From` is intended for infallible conversions only. Use `TryFrom` if there's a possibility for the conversion to fail.
83 note: potential failure(s)
84   --> $DIR/fallible_impl_from.rs:64:12
85    |
86 64 |         if s.parse::<u32>().ok().unwrap() != 42 {
87    |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
88 65 |             panic!("{:?}", s);
89    |             ^^^^^^^^^^^^^^^^^^
90    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
91
92 error: aborting due to 4 previous errors
93