From 1c7af279aac534d179021b473f2c1667c3442cf6 Mon Sep 17 00:00:00 2001 From: Scott McMurray Date: Sat, 4 Aug 2018 00:36:46 -0700 Subject: [PATCH] Remove in-band lifetimes from the 2018 edition As mentioned in the 2018-08-04 edition status update, these are postponed as lacking consensus to stabilize. --- src/libsyntax/feature_gate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 684de34e7dbd6..7797e947ed779 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -381,7 +381,7 @@ declare_features! ( (active, crate_in_paths, "1.23.0", Some(45477), Some(Edition::Edition2018)), // In-band lifetime bindings (e.g. `fn foo(x: &'a u8) -> &'a u8`) - (active, in_band_lifetimes, "1.23.0", Some(44524), Some(Edition::Edition2018)), + (active, in_band_lifetimes, "1.23.0", Some(44524), None), // generic associated types (RFC 1598) (active, generic_associated_types, "1.23.0", Some(44265), None),