diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-02-27 18:48:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-27 18:48:47 +0100 |
| commit | cf04603dca6c37366fb010a36dd05047f7b70b1e (patch) | |
| tree | 9777a714795c748b98ee1f03e82b4f43d4876d86 /tests/ui | |
| parent | 7d782b7ff4d57170e110211565209ecc5bbb3907 (diff) | |
| parent | 1291216ac986ccc1432bf0bf2db9545e5251dd24 (diff) | |
| download | rust-cf04603dca6c37366fb010a36dd05047f7b70b1e.tar.gz rust-cf04603dca6c37366fb010a36dd05047f7b70b1e.zip | |
Rollup merge of #104265 - faern:move-ipaddr-to-core, r=joshtriplett
Move IpAddr, SocketAddr and V4+V6 related types to `core` Implements RFC https://github.com/rust-lang/rfcs/pull/2832. The RFC has completed FCP with disposition merge, but is not yet merged. Moves IP types to `core` as specified in the RFC. The full list of moved types is: `IpAddr`, `Ipv4Addr`, `Ipv6Addr`, `SocketAddr`, `SocketAddrV4`, `SocketAddrV6`, `Ipv6MulticastScope` and `AddrParseError`. Doing this move was one of the main driving arguments behind #78802.
Diffstat (limited to 'tests/ui')
| -rw-r--r-- | tests/ui/traits/issue-77982.stderr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/traits/issue-77982.stderr b/tests/ui/traits/issue-77982.stderr index a397b0accc8..d4fea05fe4b 100644 --- a/tests/ui/traits/issue-77982.stderr +++ b/tests/ui/traits/issue-77982.stderr @@ -43,7 +43,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`: + = note: multiple `impl`s satisfying `u32: From<_>` found in the `core` crate: - impl From<Ipv4Addr> for u32; - impl From<NonZeroU32> for u32; - impl From<bool> for u32; |
