1
Fork 0

Add assert_matches!(expr, pat).

This commit is contained in:
Mara Bos 2021-03-04 17:55:23 +01:00
parent 7f32f62aa5
commit eb18746bc6
3 changed files with 103 additions and 27 deletions

View file

@ -228,6 +228,7 @@
#![feature(arbitrary_self_types)]
#![feature(array_error_internals)]
#![feature(asm)]
#![feature(assert_matches)]
#![feature(associated_type_bounds)]
#![feature(atomic_mut_ptr)]
#![feature(box_syntax)]
@ -550,8 +551,8 @@ pub use std_detect::detect;
#[stable(feature = "rust1", since = "1.0.0")]
#[allow(deprecated, deprecated_in_future)]
pub use core::{
assert_eq, assert_ne, debug_assert, debug_assert_eq, debug_assert_ne, matches, r#try, todo,
unimplemented, unreachable, write, writeln,
assert_eq, assert_matches, 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.