summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorMatthew Jasper <mjjasper1@gmail.com>2018-05-06 22:50:35 +0100
committerMatthew Jasper <mjjasper1@gmail.com>2018-05-15 11:43:57 +0100
commit27183a903034b1fc3aa3296e497a520508493911 (patch)
tree9a4606a1ecf3d1832ab8a491e4eee3c7d45e1fd2 /src/libsyntax
parentd0ec8ea1cc0c2b85406aff2cf5b55bf5aa551d8c (diff)
downloadrust-27183a903034b1fc3aa3296e497a520508493911.tar.gz
rust-27183a903034b1fc3aa3296e497a520508493911.zip
Feature gate trivial bounds
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 cb5125fe9ef..bf78723e413 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -463,6 +463,9 @@ declare_features! (
 
     // Allows use of the :literal macro fragment specifier (RFC 1576)
     (active, macro_literal_matcher, "1.27.0", Some(35625), None),
+
+    // inconsistent bounds in where clauses
+    (active, trivial_bounds, "1.28.0", Some(48214), None),
 );
 
 declare_features! (