Skip to content

Commit df0ab06

Browse files
committed
Update tracking issue for extern_crate_self
1 parent d311571 commit df0ab06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libsyntax/feature_gate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ declare_features! (
494494
(active, lint_reasons, "1.31.0", Some(54503), None),
495495

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

500500
declare_features! (

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

+1-1
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)