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