diff options
| author | Yoshua Wuyts <yoshuawuyts@gmail.com> | 2020-04-05 20:59:10 +0200 |
|---|---|---|
| committer | Yoshua Wuyts <yoshuawuyts@gmail.com> | 2020-04-05 22:30:25 +0200 |
| commit | 004ce25ec0ddb198bb63e14a41aaeb29f7d53bc0 (patch) | |
| tree | 2fec44acc5a7563fea872b80c028cb5933543327 /src/libstd/lib.rs | |
| parent | e6cef0445779724b469ab7b9a8d3c05d9e848ca8 (diff) | |
| download | rust-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/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 16 |
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. |
