diff options
| author | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-09-30 00:03:16 +0000 |
|---|---|---|
| committer | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-11-21 09:10:16 +0000 |
| commit | b4d3df6592a4294afc3d61e512c7bc97b86e6c41 (patch) | |
| tree | a26eb627d38e7f3cb6358d2730e5dbde2b9b100f /src/libsyntax | |
| parent | bfa709a38a8c607e1c13ee5635fbfd1940eb18b1 (diff) | |
| download | rust-b4d3df6592a4294afc3d61e512c7bc97b86e6c41.tar.gz rust-b4d3df6592a4294afc3d61e512c7bc97b86e6c41.zip | |
Stabilize RFC 1560.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index ea66fdc31cf..dbdf56e4d78 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -284,9 +284,6 @@ declare_features! ( // instead of just the platforms on which it is the C ABI (active, abi_sysv64, "1.13.0", Some(36167)), - // Use the import semantics from RFC 1560. - (active, item_like_imports, "1.13.0", Some(35120)), - // Macros 1.1 (active, proc_macro, "1.13.0", Some(35900)), @@ -362,6 +359,7 @@ declare_features! ( (accepted, question_mark, "1.13.0", Some(31436)), // Allows `..` in tuple (struct) patterns (accepted, dotdot_in_tuple_patterns, "1.14.0", Some(33627)), + (accepted, item_like_imports, "1.14.0", Some(35120)), ); // (changing above list without updating src/doc/reference.md makes @cmr sad) |
