about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorZack M. Davis <code@zackmdavis.net>2017-02-04 21:18:35 -0800
committerZack M. Davis <code@zackmdavis.net>2017-02-04 21:30:16 -0800
commit5e06aeeef0f43653ab93272daf526992db82cc8a (patch)
treec66ccf82e0d902d4a6978b6b3781eb3b165398c4 /src/libsyntax
parentd7777ae682d498ff43e3d6b65a7a8d0b2361fa0b (diff)
downloadrust-5e06aeeef0f43653ab93272daf526992db82cc8a.tar.gz
rust-5e06aeeef0f43653ab93272daf526992db82cc8a.zip
correct version in which more_struct_aliases was/will be stable
The stabilizing commit is 5056a437, which is not in 1.14, but is (at
time of writing) on the 1.16 beta branch.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index 970c37045df..cc04727b698 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -381,7 +381,7 @@ declare_features! (
     (accepted, dotdot_in_tuple_patterns, "1.14.0", Some(33627)),
     (accepted, item_like_imports, "1.14.0", Some(35120)),
     // Allows using `Self` and associated types in struct expressions and patterns.
-    (accepted, more_struct_aliases, "1.14.0", Some(37544)),
+    (accepted, more_struct_aliases, "1.16.0", Some(37544)),
 );
 // (changing above list without updating src/doc/reference.md makes @cmr sad)