rust/tests/ui/rust-2021/future-prelude-collision-shadow.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
711 B
Plaintext
Raw Normal View History

error[E0599]: no method named `try_into` found for type `u8` in the current scope
--> $DIR/future-prelude-collision-shadow.rs:27:26
|
LL | let _: u32 = 3u8.try_into().unwrap();
| ^^^^^^^^ method not found in `u8`
|
= help: items from traits can only be used if the trait is in scope
= 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
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0599`.