rust/tests/ui/fallible_impl_from.stderr

94 lines
3.3 KiB
Plaintext
Raw Normal View History

2017-10-17 11:09:10 -05:00
error: consider implementing `TryFrom` instead
--> $DIR/fallible_impl_from.rs:6:1
|
2018-12-27 09:57:55 -06:00
LL | / impl From<String> for Foo {
LL | | fn from(s: String) -> Self {
LL | | Foo(s.parse().unwrap())
LL | | }
LL | | }
| |_^
|
= help: `From` is intended for infallible conversions only. Use `TryFrom` if there's a possibility for the conversion to fail
2017-10-17 11:09:10 -05:00
note: potential failure(s)
--> $DIR/fallible_impl_from.rs:8:13
|
2018-12-27 09:57:55 -06:00
LL | Foo(s.parse().unwrap())
| ^^^^^^^^^^^^^^^^^^
2022-09-22 11:04:22 -05:00
note: the lint level is defined here
--> $DIR/fallible_impl_from.rs:1:9
|
LL | #![deny(clippy::fallible_impl_from)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-17 11:09:10 -05:00
error: consider implementing `TryFrom` instead
--> $DIR/fallible_impl_from.rs:27:1
2017-10-17 11:09:10 -05:00
|
2018-12-27 09:57:55 -06:00
LL | / impl From<usize> for Invalid {
LL | | fn from(i: usize) -> Invalid {
LL | | if i != 42 {
LL | | panic!();
2017-10-17 11:09:10 -05:00
... |
2018-12-27 09:57:55 -06:00
LL | | }
LL | | }
2017-10-17 11:09:10 -05:00
| |_^
|
= help: `From` is intended for infallible conversions only. Use `TryFrom` if there's a possibility for the conversion to fail
2017-10-17 11:09:10 -05:00
note: potential failure(s)
--> $DIR/fallible_impl_from.rs:30:13
2017-10-17 11:09:10 -05:00
|
2018-12-27 09:57:55 -06:00
LL | panic!();
| ^^^^^^^^
= note: this error originates in the macro `$crate::panic::panic_2021` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
2017-10-17 11:09:10 -05:00
error: consider implementing `TryFrom` instead
--> $DIR/fallible_impl_from.rs:36:1
2017-10-17 11:09:10 -05:00
|
2018-12-27 09:57:55 -06:00
LL | / impl From<Option<String>> for Invalid {
LL | | fn from(s: Option<String>) -> Invalid {
LL | | let s = s.unwrap();
LL | | if !s.is_empty() {
2017-10-17 11:09:10 -05:00
... |
2018-12-27 09:57:55 -06:00
LL | | }
LL | | }
2017-10-17 11:09:10 -05:00
| |_^
|
= help: `From` is intended for infallible conversions only. Use `TryFrom` if there's a possibility for the conversion to fail
2017-10-17 11:09:10 -05:00
note: potential failure(s)
--> $DIR/fallible_impl_from.rs:38:17
2017-10-17 11:09:10 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let s = s.unwrap();
2017-10-17 11:09:10 -05:00
| ^^^^^^^^^^
2018-12-27 09:57:55 -06:00
LL | if !s.is_empty() {
LL | panic!("42");
| ^^^^^^^^^^^^
2018-12-27 09:57:55 -06:00
LL | } else if s.parse::<u32>().unwrap() != 42 {
2017-10-17 11:09:10 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^
2018-12-27 09:57:55 -06:00
LL | panic!("{:?}", s);
| ^^^^^^^^^^^^^^^^^
= note: this error originates in the macro `$crate::panic::panic_2021` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
2017-10-17 11:09:10 -05:00
error: consider implementing `TryFrom` instead
--> $DIR/fallible_impl_from.rs:54:1
2017-10-17 11:09:10 -05:00
|
2018-12-27 09:57:55 -06:00
LL | / impl<'a> From<&'a mut <Box<u32> as ProjStrTrait>::ProjString> for Invalid {
LL | | fn from(s: &'a mut <Box<u32> as ProjStrTrait>::ProjString) -> Invalid {
LL | | if s.parse::<u32>().ok().unwrap() != 42 {
LL | | panic!("{:?}", s);
2017-10-17 11:09:10 -05:00
... |
2018-12-27 09:57:55 -06:00
LL | | }
LL | | }
2017-10-17 11:09:10 -05:00
| |_^
|
= help: `From` is intended for infallible conversions only. Use `TryFrom` if there's a possibility for the conversion to fail
2017-10-17 11:09:10 -05:00
note: potential failure(s)
--> $DIR/fallible_impl_from.rs:56:12
2017-10-17 11:09:10 -05:00
|
2018-12-27 09:57:55 -06:00
LL | if s.parse::<u32>().ok().unwrap() != 42 {
2017-10-17 11:09:10 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-12-27 09:57:55 -06:00
LL | panic!("{:?}", s);
| ^^^^^^^^^^^^^^^^^
= note: this error originates in the macro `$crate::panic::panic_2021` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
2017-10-17 11:09:10 -05:00
2018-01-16 10:06:27 -06:00
error: aborting due to 4 previous errors