diff options
| author | Ryan Leckey <ryan@launchbadge.com> | 2019-01-07 07:09:17 -0800 |
|---|---|---|
| committer | Ryan Leckey <ryan@launchbadge.com> | 2019-01-14 23:42:46 -0800 |
| commit | 09d073a4c59dee09f69f3cb144c3067a153c30e6 (patch) | |
| tree | c0be58b46fcf93924472cb1443b567ec65268c01 /src/libsyntax | |
| parent | aea9f0aa976db2f5de28be3b6b287c6889cd926b (diff) | |
| download | rust-09d073a4c59dee09f69f3cb144c3067a153c30e6.tar.gz rust-09d073a4c59dee09f69f3cb144c3067a153c30e6.zip | |
stabilize extern_crate_self
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 ed278e834cb..afbc0106262 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), @@ -685,6 +682,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 |
