diff options
| author | Scott McMurray <scottmcm@users.noreply.github.com> | 2018-08-04 00:36:46 -0700 |
|---|---|---|
| committer | Scott McMurray <scottmcm@users.noreply.github.com> | 2018-08-04 00:36:46 -0700 |
| commit | 1c7af279aac534d179021b473f2c1667c3442cf6 (patch) | |
| tree | 66fc298071579b41993ce5f52775137f361d8a32 /src/libsyntax | |
| parent | 7398c3125b0b22fa95326a626e06ece9411d6522 (diff) | |
| download | rust-1c7af279aac534d179021b473f2c1667c3442cf6.tar.gz rust-1c7af279aac534d179021b473f2c1667c3442cf6.zip | |
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.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 684de34e7db..7797e947ed7 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), |
