1
Fork 0

Rollup merge of #99332 - jyn514:stabilize-label-break-value, r=petrochenkov

Stabilize `#![feature(label_break_value)]`

See the stabilization report in https://github.com/rust-lang/rust/issues/48594#issuecomment-1186213313.
This commit is contained in:
Yuki Okushi 2022-08-25 08:50:54 +09:00 committed by GitHub
commit a5b6bc60cf
2 changed files with 0 additions and 4 deletions

View file

@ -1,5 +1,3 @@
#![feature(label_break_value)]
fn main() {
let mut res = 0;
's_39: { if res == 0i32 { println!("Hello, world!"); } }

View file

@ -1,5 +1,3 @@
#![feature(label_break_value)]
fn main() {
let mut res = 0;
's_39: {