]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-label_break_value.rs
Add 'compiler/rustc_smir/' from commit '9abcb5c7b574cf316eb23d3f469187bb86ba3019'
[rust.git] / src / test / ui / feature-gates / feature-gate-label_break_value.rs
1 pub fn main() {
2     'a: { //~ ERROR labels on blocks are unstable
3         break 'a;
4     }
5 }