about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorYoshua Wuyts <yoshuawuyts@gmail.com>2020-04-05 20:59:10 +0200
committerYoshua Wuyts <yoshuawuyts@gmail.com>2020-04-05 22:30:25 +0200
commit004ce25ec0ddb198bb63e14a41aaeb29f7d53bc0 (patch)
tree2fec44acc5a7563fea872b80c028cb5933543327 /src/libstd
parente6cef0445779724b469ab7b9a8d3c05d9e848ca8 (diff)
downloadrust-004ce25ec0ddb198bb63e14a41aaeb29f7d53bc0.tar.gz
rust-004ce25ec0ddb198bb63e14a41aaeb29f7d53bc0.zip
Remove labels in libstd/lib.rs macro imports
These labels were probably moved around when rustfmt was introduced.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/lib.rs16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index ff8f6731724..a9a519f0a3a 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.