]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-label_break_value.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[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 }