diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-01-26 18:21:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-26 18:21:41 +0100 |
| commit | 5e6c2f40d05df697364162d640d3198b2190a076 (patch) | |
| tree | 08c89e57bf2389d20da9fca6995542be5f8a5372 /src/libsyntax | |
| parent | ccd428befd2d90736a7c8d05ba35c430f59c9a11 (diff) | |
| parent | 09d073a4c59dee09f69f3cb144c3067a153c30e6 (diff) | |
| download | rust-5e6c2f40d05df697364162d640d3198b2190a076.tar.gz rust-5e6c2f40d05df697364162d640d3198b2190a076.zip | |
Rollup merge of #57407 - mehcode:stabilize-extern-crate-self, r=Centril
Stabilize extern_crate_self Fixes #56409
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index d74a0d5623a..28209248246 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -453,9 +453,6 @@ declare_features! ( // Adds `reason` and `expect` lint attributes. (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(56409), None), - // Allows paths to enum variants on type aliases. (active, type_alias_enum_variants, "1.31.0", Some(49683), None), @@ -689,6 +686,8 @@ declare_features! ( (accepted, uniform_paths, "1.32.0", Some(53130), None), // Allows `cfg(target_vendor = "...")`. (accepted, cfg_target_vendor, "1.33.0", Some(29718), None), + // `extern crate self as foo;` puts local crate root into extern prelude under name `foo`. + (accepted, extern_crate_self, "1.34.0", Some(56409), None), ); // If you change this, please modify `src/doc/unstable-book` as well. You must |
