summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-label_break_value.rs
blob: 6fc38f45517ef74dc38864b8d00e0d4dc2b59548 (plain)
1
2
3
4
5
pub fn main() {
    'a: { //~ ERROR labels on blocks are unstable
        break 'a;
    }
}