about summary refs log tree commit diff
path: root/tests/ui
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-02-27 18:48:47 +0100
committerGitHub <noreply@github.com>2023-02-27 18:48:47 +0100
commitcf04603dca6c37366fb010a36dd05047f7b70b1e (patch)
tree9777a714795c748b98ee1f03e82b4f43d4876d86 /tests/ui
parent7d782b7ff4d57170e110211565209ecc5bbb3907 (diff)
parent1291216ac986ccc1432bf0bf2db9545e5251dd24 (diff)
downloadrust-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.stderr2
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;