]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rust-2021/future-prelude-collision-imported.stderr
Merge commit '7b73b60faca71d01d900e49831fcb84553e93019' into sync-rustfmt
[rust.git] / src / test / ui / rust-2021 / future-prelude-collision-imported.stderr
1 warning: trait method `try_into` will become ambiguous in Rust 2021
2   --> $DIR/future-prelude-collision-imported.rs:27:22
3    |
4 LL |         let _: u32 = 3u8.try_into().unwrap();
5    |                      ^^^^^^^^^^^^^^ help: disambiguate the associated function: `TryIntoU32::try_into(3u8)`
6    |
7 note: the lint level is defined here
8   --> $DIR/future-prelude-collision-imported.rs:4:9
9    |
10 LL | #![warn(rust_2021_prelude_collisions)]
11    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12    = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021!
13    = note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/prelude.html>
14
15 warning: trait method `try_into` will become ambiguous in Rust 2021
16   --> $DIR/future-prelude-collision-imported.rs:40:22
17    |
18 LL |         let _: u32 = 3u8.try_into().unwrap();
19    |                      ^^^^^^^^^^^^^^ help: disambiguate the associated function: `crate::m::TryIntoU32::try_into(3u8)`
20    |
21    = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021!
22    = note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/prelude.html>
23
24 warning: trait method `try_into` will become ambiguous in Rust 2021
25   --> $DIR/future-prelude-collision-imported.rs:53:22
26    |
27 LL |         let _: u32 = 3u8.try_into().unwrap();
28    |                      ^^^^^^^^^^^^^^ help: disambiguate the associated function: `super::m::TryIntoU32::try_into(3u8)`
29    |
30    = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021!
31    = note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/prelude.html>
32
33 warning: trait method `try_into` will become ambiguous in Rust 2021
34   --> $DIR/future-prelude-collision-imported.rs:64:22
35    |
36 LL |         let _: u32 = 3u8.try_into().unwrap();
37    |                      ^^^^^^^^^^^^^^ help: disambiguate the associated function: `TryIntoU32::try_into(3u8)`
38    |
39    = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021!
40    = note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/prelude.html>
41
42 warning: 4 warnings emitted
43