Update tracking issue for extern_crate_self

This commit is contained in:
Vadim Petrochenkov 2018-12-01 18:58:43 +03:00
parent d311571906
commit df0ab06073
2 changed files with 2 additions and 2 deletions

View file

@ -494,7 +494,7 @@ declare_features! (
(active, lint_reasons, "1.31.0", Some(54503), None), (active, lint_reasons, "1.31.0", Some(54503), None),
// `extern crate self as foo;` puts local crate root into extern prelude under name `foo`. // `extern crate self as foo;` puts local crate root into extern prelude under name `foo`.
(active, extern_crate_self, "1.31.0", Some(54658), None), (active, extern_crate_self, "1.31.0", Some(56409), None),
); );
declare_features! ( declare_features! (

View file

@ -1,4 +1,4 @@
error[E0658]: `extern crate self` is unstable (see issue #54658) error[E0658]: `extern crate self` is unstable (see issue #56409)
--> $DIR/feature-gate-extern_crate_self.rs:1:1 --> $DIR/feature-gate-extern_crate_self.rs:1:1
| |
LL | extern crate self as foo; //~ ERROR `extern crate self` is unstable LL | extern crate self as foo; //~ ERROR `extern crate self` is unstable