@@ -297,9 +297,6 @@ declare_features! (
297297
298298 ( active, use_extern_macros, "1.15.0" , Some ( 35896 ) ) ,
299299
300- // Allows `break {expr}` with a value inside `loop`s.
301- ( active, loop_break_value, "1.14.0" , Some ( 37339 ) ) ,
302-
303300 // Allows #[target_feature(...)]
304301 ( active, target_feature, "1.15.0" , None ) ,
305302
@@ -423,6 +420,8 @@ declare_features! (
423420 ( accepted, pub_restricted, "1.18.0" , Some ( 32409 ) ) ,
424421 // The #![windows_subsystem] attribute
425422 ( accepted, windows_subsystem, "1.18.0" , Some ( 37499 ) ) ,
423+ // Allows `break {expr}` with a value inside `loop`s.
424+ ( accepted, loop_break_value, "1.19.0" , Some ( 37339 ) ) ,
426425) ;
427426// If you change this, please modify src/doc/unstable-book as well. You must
428427// move that documentation into the relevant place in the other docs, and
@@ -1301,10 +1300,6 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
13011300 }
13021301 }
13031302 }
1304- ast:: ExprKind :: Break ( _, Some ( _) ) => {
1305- gate_feature_post ! ( & self , loop_break_value, e. span,
1306- "`break` with a value is experimental" ) ;
1307- }
13081303 ast:: ExprKind :: Lit ( ref lit) => {
13091304 if let ast:: LitKind :: Int ( _, ref ty) = lit. node {
13101305 match * ty {
0 commit comments