Skip to content

Commit f7ebe19

Browse files
committed
Add tracking issue for the matches! macro
rust-lang#65721
1 parent 7472cd4 commit f7ebe19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ macro_rules! debug_assert_ne {
252252
/// assert!(matches!(bar, Some(x) if x > 2));
253253
/// ```
254254
#[macro_export]
255-
#[unstable(feature = "matches_macro", issue = "0")]
255+
#[unstable(feature = "matches_macro", issue = "65721")]
256256
macro_rules! matches {
257257
($expression:expr, $( $pattern:pat )|+ $( if $guard: expr )?) => {
258258
match $expression {

0 commit comments

Comments
 (0)