Skip to content

Commit 3993dc9

Browse files
authored
Rollup merge of #56412 - petrochenkov:extself, r=Centril
Update tracking issue for `extern_crate_self`
2 parents 101e116 + df0ab06 commit 3993dc9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libsyntax/feature_gate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ declare_features! (
491491
(active, lint_reasons, "1.31.0", Some(54503), None),
492492

493493
// `extern crate self as foo;` puts local crate root into extern prelude under name `foo`.
494-
(active, extern_crate_self, "1.31.0", Some(54658), None),
494+
(active, extern_crate_self, "1.31.0", Some(56409), None),
495495
);
496496

497497
declare_features! (

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: `extern crate self` is unstable (see issue #54658)
1+
error[E0658]: `extern crate self` is unstable (see issue #56409)
22
--> $DIR/feature-gate-extern_crate_self.rs:1:1
33
|
44
LL | extern crate self as foo; //~ ERROR `extern crate self` is unstable

0 commit comments

Comments
 (0)