about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-01-05 00:49:12 +0000
committerbors <bors@rust-lang.org>2019-01-05 00:49:12 +0000
commit244b05db12e47efef4695036974bc25fde13b828 (patch)
tree3cfddf52e2f53aea3f34500ae4d05b11e4e8f559 /src/libsyntax
parentbf6bb141bbc77bfb7d9bc79f2db6d986aafc01cc (diff)
parentd758e4db783618daef974d067fdf6cfb285f48d5 (diff)
downloadrust-244b05db12e47efef4695036974bc25fde13b828.tar.gz
rust-244b05db12e47efef4695036974bc25fde13b828.zip
Auto merge of #56145 - weiznich:re_rebalance_coherence, r=nikomatsakis
Implement the Re-rebalance coherence RFC

This is the first time I touch anything in the compiler so just tell me if I got something wrong.

Big thanks to @sgrif for the pointers where to look for those things.
cc #55437
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index 3f2122e24a6..8362c86f8ba 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -479,6 +479,9 @@ declare_features! (
 
     // Allows paths to enum variants on type aliases.
     (active, type_alias_enum_variants, "1.31.0", Some(49683), None),
+
+    // Re-Rebalance coherence
+    (active, re_rebalance_coherence, "1.32.0", Some(55437), None),
 );
 
 declare_features! (