diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-02-05 09:14:57 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-05 09:14:57 -0500 |
| commit | 0a09274e27c7b409a321c0c7ed20d99492601b44 (patch) | |
| tree | 69ebb9fa31a84a98c42c14f56e866762a844ce2f /src/libsyntax | |
| parent | 94fd315173f320c719f879cbdfd6c022622f8cc0 (diff) | |
| parent | 5e06aeeef0f43653ab93272daf526992db82cc8a (diff) | |
| download | rust-0a09274e27c7b409a321c0c7ed20d99492601b44.tar.gz rust-0a09274e27c7b409a321c0c7ed20d99492601b44.zip | |
Rollup merge of #39552 - zackmdavis:more_struct_aliases_stabilization_version, r=petrochenkov
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. [See discussion](https://github.com/rust-lang/rust/pull/39282#discussion_r99481687).
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 60a940d4b7f..52ef2a05fcf 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) |
