Rollup merge of #56412 - petrochenkov:extself, r=Centril

Update tracking issue for `extern_crate_self`
This commit is contained in:
kennytm 2018-12-03 18:07:11 +08:00 committed by GitHub
commit 81752fd85d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -491,7 +491,7 @@ declare_features! (
(active, lint_reasons, "1.31.0", Some(54503), None),
// `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! (

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
|
LL | extern crate self as foo; //~ ERROR `extern crate self` is unstable