2021-06-19 17:42:24 -05:00
|
|
|
error[E0599]: no method named `try_into` found for type `u8` in the current scope
|
2021-06-21 09:58:10 -05:00
|
|
|
--> $DIR/future-prelude-collision-shadow.rs:27:26
|
2021-06-19 17:42:24 -05:00
|
|
|
|
|
|
|
|
LL | let _: u32 = 3u8.try_into().unwrap();
|
|
|
|
| ^^^^^^^^ method not found in `u8`
|
2021-06-10 06:52:00 -05:00
|
|
|
|
|
2021-06-19 17:42:24 -05:00
|
|
|
= help: items from traits can only be used if the trait is in scope
|
2021-10-24 20:09:52 -05:00
|
|
|
= note: 'std::convert::TryInto' is included in the prelude starting in Edition 2021
|
2021-08-26 13:17:19 -05:00
|
|
|
help: the following traits are implemented but not in scope; perhaps add a `use` for one of them:
|
|
|
|
|
|
2023-03-17 21:18:39 -05:00
|
|
|
LL + use crate::m::TryIntoU32;
|
2021-08-26 13:17:19 -05:00
|
|
|
|
|
2023-03-17 21:18:39 -05:00
|
|
|
LL + use std::convert::TryInto;
|
2021-08-26 13:17:19 -05:00
|
|
|
|
|
2021-06-19 17:42:24 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|