Skip to content

Commit 89cf577

Browse files
committed
Fix tracking issue numbers for some unstable features
1 parent 451987d commit 89cf577

5 files changed

+18
-18
lines changed

src/libsyntax/feature_gate.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ declare_features! (
349349
(active, abi_thiscall, "1.19.0", None, None),
350350

351351
// Allows a test to fail without failing the whole suite
352-
(active, allow_fail, "1.19.0", Some(42219), None),
352+
(active, allow_fail, "1.19.0", Some(46488), None),
353353

354354
// Allows unsized tuple coercion.
355355
(active, unsized_tuple_coercion, "1.20.0", Some(42877), None),
@@ -376,7 +376,7 @@ declare_features! (
376376
(active, non_exhaustive, "1.22.0", Some(44109), None),
377377

378378
// `crate` as visibility modifier, synonymous to `pub(crate)`
379-
(active, crate_visibility_modifier, "1.23.0", Some(45388), None),
379+
(active, crate_visibility_modifier, "1.23.0", Some(53120), None),
380380

381381
// extern types
382382
(active, extern_types, "1.23.0", Some(43467), None),
@@ -391,13 +391,13 @@ declare_features! (
391391
(active, generic_associated_types, "1.23.0", Some(44265), None),
392392

393393
// `extern` in paths
394-
(active, extern_in_paths, "1.23.0", Some(44660), None),
394+
(active, extern_in_paths, "1.23.0", Some(55600), None),
395395

396396
// Use `?` as the Kleene "at most one" operator
397397
(active, macro_at_most_once_rep, "1.25.0", Some(48075), None),
398398

399399
// Infer static outlives requirements; RFC 2093
400-
(active, infer_static_outlives_requirements, "1.26.0", Some(44493), None),
400+
(active, infer_static_outlives_requirements, "1.26.0", Some(54185), None),
401401

402402
// Multiple patterns with `|` in `if let` and `while let`
403403
(active, if_while_or_patterns, "1.26.0", Some(48215), None),
@@ -466,7 +466,7 @@ declare_features! (
466466
(active, test_2018_feature, "1.31.0", Some(0), Some(Edition::Edition2018)),
467467

468468
// Support for arbitrary delimited token streams in non-macro attributes
469-
(active, unrestricted_attribute_tokens, "1.30.0", Some(44690), None),
469+
(active, unrestricted_attribute_tokens, "1.30.0", Some(55208), None),
470470

471471
// Allows `use x::y;` to resolve through `self::x`, not just `::x`
472472
(active, uniform_paths, "1.30.0", Some(53130), None),
@@ -503,7 +503,7 @@ declare_features! (
503503
(active, underscore_const_names, "1.31.0", Some(54912), None),
504504

505505
// `extern crate foo as bar;` puts `bar` into extern prelude.
506-
(active, extern_crate_item_prelude, "1.31.0", Some(54658), None),
506+
(active, extern_crate_item_prelude, "1.31.0", Some(55599), None),
507507

508508
// `reason = ` in lint attributes and `expect` lint attribute
509509
(active, lint_reasons, "1.31.0", Some(54503), None),

src/test/ui/feature-gates/feature-gate-allow_fail.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: allow_fail attribute is currently unstable (see issue #42219)
1+
error[E0658]: allow_fail attribute is currently unstable (see issue #46488)
22
--> $DIR/feature-gate-allow_fail.rs:13:1
33
|
44
LL | #[allow_fail] //~ ERROR allow_fail attribute is currently unstable

src/test/ui/feature-gates/feature-gate-crate_visibility_modifier.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: `crate` visibility modifier is experimental (see issue #45388)
1+
error[E0658]: `crate` visibility modifier is experimental (see issue #53120)
22
--> $DIR/feature-gate-crate_visibility_modifier.rs:11:1
33
|
44
LL | crate struct Bender { //~ ERROR `crate` visibility modifier is experimental

src/test/ui/feature-gates/feature-gate-extern_crate_item_prelude.stderr

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,68 @@
1-
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #54658)
1+
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #55599)
22
--> $DIR/feature-gate-extern_crate_item_prelude.rs:26:9
33
|
44
LL | use alloc;
55
| ^^^^^
66
|
77
= help: add #![feature(extern_crate_item_prelude)] to the crate attributes to enable
88

9-
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #54658)
9+
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #55599)
1010
--> $DIR/feature-gate-extern_crate_item_prelude.rs:28:9
1111
|
1212
LL | use alloc::boxed;
1313
| ^^^^^
1414
|
1515
= help: add #![feature(extern_crate_item_prelude)] to the crate attributes to enable
1616

17-
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #54658)
17+
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #55599)
1818
--> $DIR/feature-gate-extern_crate_item_prelude.rs:33:11
1919
|
2020
LL | use ::alloc;
2121
| ^^^^^
2222
|
2323
= help: add #![feature(extern_crate_item_prelude)] to the crate attributes to enable
2424

25-
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #54658)
25+
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #55599)
2626
--> $DIR/feature-gate-extern_crate_item_prelude.rs:35:11
2727
|
2828
LL | use ::alloc::boxed;
2929
| ^^^^^
3030
|
3131
= help: add #![feature(extern_crate_item_prelude)] to the crate attributes to enable
3232

33-
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #54658)
33+
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #55599)
3434
--> $DIR/feature-gate-extern_crate_item_prelude.rs:9:17
3535
|
3636
LL | let v = alloc::vec![0];
3737
| ^^^^^
3838
|
3939
= help: add #![feature(extern_crate_item_prelude)] to the crate attributes to enable
4040

41-
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #54658)
41+
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #55599)
4242
--> $DIR/feature-gate-extern_crate_item_prelude.rs:11:18
4343
|
4444
LL | type A = alloc::boxed::Box<u8>;
4545
| ^^^^^
4646
|
4747
= help: add #![feature(extern_crate_item_prelude)] to the crate attributes to enable
4848

49-
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #54658)
49+
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #55599)
5050
--> $DIR/feature-gate-extern_crate_item_prelude.rs:18:19
5151
|
5252
LL | let v = ::alloc::vec![0];
5353
| ^^^^^
5454
|
5555
= help: add #![feature(extern_crate_item_prelude)] to the crate attributes to enable
5656

57-
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #54658)
57+
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #55599)
5858
--> $DIR/feature-gate-extern_crate_item_prelude.rs:20:20
5959
|
6060
LL | type A = ::alloc::boxed::Box<u8>;
6161
| ^^^^^
6262
|
6363
= help: add #![feature(extern_crate_item_prelude)] to the crate attributes to enable
6464

65-
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #54658)
65+
error[E0658]: use of extern prelude names introduced with `extern crate` items is unstable (see issue #55599)
6666
--> $DIR/feature-gate-extern_crate_item_prelude.rs:42:14
6767
|
6868
LL | type A = core::boxed::Box<u8>;

src/test/ui/feature-gates/feature-gate-extern_in_paths.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: `extern` in paths is experimental (see issue #44660)
1+
error[E0658]: `extern` in paths is experimental (see issue #55600)
22
--> $DIR/feature-gate-extern_in_paths.rs:14:13
33
|
44
LL | let _ = extern::std::vec::Vec::new(); //~ ERROR `extern` in paths is experimental

0 commit comments

Comments
 (0)