diff options
| author | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-08-16 06:03:36 +0000 |
|---|---|---|
| committer | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-09-01 22:29:50 +0000 |
| commit | 5ba22c0ed68ed4b46c9db2ceac2e5cc96728411a (patch) | |
| tree | 39dbdf567c6bbf1d8ef51eb319af12f6f146f948 /src/libsyntax | |
| parent | 513e955a1891d12819ba642331eb436d00861f3d (diff) | |
| download | rust-5ba22c0ed68ed4b46c9db2ceac2e5cc96728411a.tar.gz rust-5ba22c0ed68ed4b46c9db2ceac2e5cc96728411a.zip | |
Add `item_like_imports` feature.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index e224e30b1a2..02c44c3a56d 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -285,7 +285,10 @@ declare_features! ( // Allows the sysV64 ABI to be specified on all platforms // instead of just the platforms on which it is the C ABI - (active, abi_sysv64, "1.13.0", Some(36167)) + (active, abi_sysv64, "1.13.0", Some(36167)), + + // Use the import semantics from RFC 1560. + (active, item_like_imports, "1.13.0", Some(35120)) ); declare_features! ( |
