File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ macro_rules! assert_ne {
135
135
/// assert_matches!(c, Ok(x) | Err(x) if x.len() < 100);
136
136
/// ```
137
137
#[ macro_export]
138
- #[ unstable( feature = "assert_matches" , issue = "none " ) ]
138
+ #[ unstable( feature = "assert_matches" , issue = "82775 " ) ]
139
139
#[ allow_internal_unstable( core_panic) ]
140
140
macro_rules! assert_matches {
141
141
( $left: expr, $( $pattern: pat ) |+ $( if $guard: expr ) ? $( , ) ?) => ( {
@@ -292,7 +292,7 @@ macro_rules! debug_assert_ne {
292
292
/// debug_assert_matches!(c, Ok(x) | Err(x) if x.len() < 100);
293
293
/// ```
294
294
#[ macro_export]
295
- #[ unstable( feature = "assert_matches" , issue = "none " ) ]
295
+ #[ unstable( feature = "assert_matches" , issue = "82775 " ) ]
296
296
#[ allow_internal_unstable( assert_matches) ]
297
297
macro_rules! debug_assert_matches {
298
298
( $( $arg: tt) * ) => ( if $crate:: cfg!( debug_assertions) { $crate:: assert_matches!( $( $arg) * ) ; } )
You can’t perform that action at this time.
0 commit comments