From 004ce25ec0ddb198bb63e14a41aaeb29f7d53bc0 Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Sun, 5 Apr 2020 20:59:10 +0200 Subject: [PATCH] Remove labels in libstd/lib.rs macro imports These labels were probably moved around when rustfmt was introduced. --- src/libstd/lib.rs | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index ff8f6731724d0..a9a519f0a3a71 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -517,20 +517,8 @@ pub use std_detect::detect; #[stable(feature = "rust1", since = "1.0.0")] #[allow(deprecated, deprecated_in_future)] pub use core::{ - // Stable - assert_eq, - assert_ne, - debug_assert, - debug_assert_eq, - debug_assert_ne, - // Unstable - matches, - r#try, - todo, - unimplemented, - unreachable, - write, - writeln, + assert_eq, assert_ne, debug_assert, debug_assert_eq, debug_assert_ne, matches, r#try, todo, + unimplemented, unreachable, write, writeln, }; // Re-export built-in macros defined through libcore.