]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-label_break_value.rs
Rollup merge of #65800 - michaelwoerister:measureme-0.4.0, r=wesleywiser
[rust.git] / src / test / ui / feature-gates / feature-gate-label_break_value.rs
1 #[cfg(FALSE)]
2 pub fn foo() {
3     'a: { //~ ERROR labels on blocks are unstable
4         break 'a;
5     }
6 }
7
8 fn main() {}