diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2018-12-27 03:38:43 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-01-12 16:18:55 +0300 |
| commit | 79134c051702f71cb4ef13a283dc3689eec9466d (patch) | |
| tree | 37d06b01291e27872a4aa551faa2e2090445da19 /src/libsyntax | |
| parent | 2f3db49c3d99d0338b4a47b62079da71c26db458 (diff) | |
| download | rust-79134c051702f71cb4ef13a283dc3689eec9466d.tar.gz rust-79134c051702f71cb4ef13a283dc3689eec9466d.zip | |
Stabilize `uniform_paths`
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 45b3ba604c6..19b8df80a6a 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -440,9 +440,6 @@ declare_features! ( // support for arbitrary delimited token streams in non-macro attributes (active, unrestricted_attribute_tokens, "1.30.0", Some(55208), None), - // Allows `use x::y;` to resolve through `self::x`, not just `::x`. - (active, uniform_paths, "1.30.0", Some(53130), None), - // Allows unsized rvalues at arguments and parameters. (active, unsized_locals, "1.30.0", Some(48055), None), @@ -687,6 +684,8 @@ declare_features! ( (accepted, cfg_attr_multi, "1.33.0", Some(54881), None), // Top level or-patterns (`p | q`) in `if let` and `while let`. (accepted, if_while_or_patterns, "1.33.0", Some(48215), None), + // Allows `use x::y;` to search `x` in the current scope. + (accepted, uniform_paths, "1.32.0", Some(53130), None), ); // If you change this, please modify `src/doc/unstable-book` as well. You must |
