diff options
| author | bors <bors@rust-lang.org> | 2021-07-17 00:35:36 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-07-17 00:35:36 +0000 |
| commit | 0cd12d649ea966648cc2c7c5dec8f4933d6fa355 (patch) | |
| tree | 68bb9338b27a6526d069329fa0377a85b3cc5342 /library/std/src | |
| parent | 32c447e179cb4c3ae34e51b2f37b4390953ff55c (diff) | |
| parent | d0e8de68c4c59fd1e0fb4ba1e3ab4c7bbff842a0 (diff) | |
| download | rust-0cd12d649ea966648cc2c7c5dec8f4933d6fa355.tar.gz rust-0cd12d649ea966648cc2c7c5dec8f4933d6fa355.zip | |
Auto merge of #87195 - yaahc:move-assert_matches-again, r=oli-obk
rename assert_matches module Fixes nightly breakage introduced in https://github.com/rust-lang/rust/pull/86947
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs index 472bca3460f..a157a222c43 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -556,9 +556,9 @@ pub use core::{ #[stable(feature = "builtin_macro_prelude", since = "1.38.0")] #[allow(deprecated)] pub use core::{ - asm, assert, cfg, column, compile_error, concat, concat_idents, env, file, format_args, - format_args_nl, global_asm, include, include_bytes, include_str, line, llvm_asm, log_syntax, - module_path, option_env, stringify, trace_macros, + asm, assert, assert_matches, cfg, column, compile_error, concat, concat_idents, env, file, + format_args, format_args_nl, global_asm, include, include_bytes, include_str, line, llvm_asm, + log_syntax, module_path, option_env, stringify, trace_macros, }; #[stable(feature = "core_primitive", since = "1.43.0")] |
