about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorScott McMurray <scottmcm@users.noreply.github.com>2018-08-03 00:08:44 -0700
committerScott McMurray <scottmcm@users.noreply.github.com>2018-08-03 00:08:44 -0700
commitce9d469a700682b164defabd15e6783595c7ea57 (patch)
treef024ec6017d59a88fc15744bb5c0e38901e1f271 /src/libsyntax
parent7e8ca9f8bd8325398e76bc30ac09aab138bbb127 (diff)
downloadrust-ce9d469a700682b164defabd15e6783595c7ea57.tar.gz
rust-ce9d469a700682b164defabd15e6783595c7ea57.zip
Extract impl_header_lifetime_elision out of in_band_lifetimes
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index 77e3faa5b1f..684de34e7db 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -482,6 +482,10 @@ declare_features! (
     (active, alloc_error_handler, "1.29.0", Some(51540), None),
 
     (active, abi_amdgpu_kernel, "1.29.0", Some(51575), None),
+
+    // impl<I:Iterator> Iterator for &mut Iterator
+    // impl Debug for Foo<'_>
+    (active, impl_header_lifetime_elision, "1.30.0", Some(15872), Some(Edition::Edition2018)),
 );
 
 declare_features! (