Skip to content

Commit 2495418

Browse files
authored
Rollup merge of rust-lang#128800 - clarfonthey:core-pattern-type, r=compiler-errors
Add tracking issue to core-pattern-type While the actual `pattern_types` feature flag has an issue assigned, the exported macro and its module do not. cc rust-lang#123646
2 parents 79cd72a + 8f84015 commit 2495418

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: core/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ pub mod net;
391391
pub mod option;
392392
pub mod panic;
393393
pub mod panicking;
394-
#[unstable(feature = "core_pattern_types", issue = "none")]
394+
#[unstable(feature = "core_pattern_types", issue = "123646")]
395395
pub mod pat;
396396
pub mod pin;
397397
#[unstable(feature = "new_range_api", issue = "125687")]

Diff for: core/src/pat.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/// ```
77
#[macro_export]
88
#[rustc_builtin_macro(pattern_type)]
9-
#[unstable(feature = "core_pattern_type", issue = "none")]
9+
#[unstable(feature = "core_pattern_type", issue = "123646")]
1010
macro_rules! pattern_type {
1111
($($arg:tt)*) => {
1212
/* compiler built-in */

Diff for: std/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ pub mod net;
586586
pub mod num;
587587
pub mod os;
588588
pub mod panic;
589-
#[unstable(feature = "core_pattern_types", issue = "none")]
589+
#[unstable(feature = "core_pattern_types", issue = "123646")]
590590
pub mod pat;
591591
pub mod path;
592592
#[unstable(feature = "anonymous_pipe", issue = "127154")]

0 commit comments

Comments
 (0)