Skip to content

Commit bc74162

Browse files
committed
fixed feature gate to right place
1 parent b78457f commit bc74162

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libsyntax/feature_gate.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -473,8 +473,6 @@ declare_features! (
473473
// 'a: { break 'a; }
474474
(active, label_break_value, "1.28.0", Some(48594), None),
475475

476-
// Termination trait in tests (RFC 1937)
477-
(accepted, termination_trait_test, "1.28.0", Some(48854), Some(Edition::Edition2018)),
478476
);
479477

480478
declare_features! (
@@ -609,6 +607,8 @@ declare_features! (
609607
(accepted, fn_must_use, "1.27.0", Some(43302), None),
610608
// Allows use of the :lifetime macro fragment specifier
611609
(accepted, macro_lifetime_matcher, "1.27.0", Some(34303), None),
610+
// Termination trait in tests (RFC 1937)
611+
(accepted, termination_trait_test, "1.27.0", Some(48854), Some(Edition::Edition2018)),
612612
);
613613

614614
// If you change this, please modify src/doc/unstable-book as well. You must

0 commit comments

Comments
 (0)