Skip to content

Commit 80fcdef

Browse files
committed
Add tracking issue for assert_matches.
1 parent f223aff commit 80fcdef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/macros/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ macro_rules! assert_ne {
135135
/// assert_matches!(c, Ok(x) | Err(x) if x.len() < 100);
136136
/// ```
137137
#[macro_export]
138-
#[unstable(feature = "assert_matches", issue = "none")]
138+
#[unstable(feature = "assert_matches", issue = "82775")]
139139
#[allow_internal_unstable(core_panic)]
140140
macro_rules! assert_matches {
141141
($left:expr, $( $pattern:pat )|+ $( if $guard: expr )? $(,)?) => ({
@@ -292,7 +292,7 @@ macro_rules! debug_assert_ne {
292292
/// debug_assert_matches!(c, Ok(x) | Err(x) if x.len() < 100);
293293
/// ```
294294
#[macro_export]
295-
#[unstable(feature = "assert_matches", issue = "none")]
295+
#[unstable(feature = "assert_matches", issue = "82775")]
296296
#[allow_internal_unstable(assert_matches)]
297297
macro_rules! debug_assert_matches {
298298
($($arg:tt)*) => (if $crate::cfg!(debug_assertions) { $crate::assert_matches!($($arg)*); })

0 commit comments

Comments
 (0)