]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/traits/issue-77982.stderr
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / traits / issue-77982.stderr
index e210f11b3e0c12a49439fc5f7144d2c7453802c4..b6a04585583c933079d52ac7c76cffeefe53938e 100644 (file)
@@ -46,12 +46,7 @@ LL |     let ips: Vec<_> = (0..100_000).map(|_| u32::from(0u32.into())).collect(
    |                                            |
    |                                            required by a bound introduced by this call
    |
-   = note: multiple `impl`s satisfying `u32: From<_>` found in the following crates: `core`, `std`:
-           - impl From<Ipv4Addr> for u32;
-           - impl From<NonZeroU32> for u32;
-           - impl From<bool> for u32;
-           - impl From<char> for u32;
-           and 3 more
+   = note: cannot satisfy `u32: From<_>`
 help: try using a fully qualified path to specify the expected types
    |
 LL |     let ips: Vec<_> = (0..100_000).map(|_| u32::from(<u32 as Into<T>>::into(0u32))).collect();