diff options
| author | Tyler Mandry <tmandry@gmail.com> | 2018-03-19 01:59:51 -0500 |
|---|---|---|
| committer | Tyler Mandry <tmandry@gmail.com> | 2018-03-19 01:59:51 -0500 |
| commit | e5a55e74405dedf8bc0744300a8c506eea94bc18 (patch) | |
| tree | 293b172e5c1d8f849b76d5f7785869f16f65e468 /src/libsyntax | |
| parent | 97b3bf99f667736c3220a91b72a587eafe4cda49 (diff) | |
| download | rust-e5a55e74405dedf8bc0744300a8c506eea94bc18.tar.gz rust-e5a55e74405dedf8bc0744300a8c506eea94bc18.zip | |
Stabilize termination_trait in 1.25, not 1.26
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 781071b7f7f..e71726bcebd 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -551,12 +551,12 @@ declare_features! ( (accepted, match_beginning_vert, "1.25.0", Some(44101), None), // Nested groups in `use` (RFC 2128) (accepted, use_nested_groups, "1.25.0", Some(44494), None), + // Termination trait in main (RFC 1937) + (accepted, termination_trait, "1.25.0", Some(43301), None), // a..=b and ..=b (accepted, inclusive_range_syntax, "1.26.0", Some(28237), None), // allow `..=` in patterns (RFC 1192) (accepted, dotdoteq_in_patterns, "1.26.0", Some(28237), None), - // Termination trait in main (RFC 1937) - (accepted, termination_trait, "1.26.0", Some(43301), None), ); // If you change this, please modify src/doc/unstable-book as well. You must |
