summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/bad-interpolated-block.rs
blob: 38d53a14bc0bc7e52419e6eb29e067ae3abacbdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(label_break_value)]

fn main() {}

macro_rules! m {
    ($b:block) => {
        'lab: $b; //~ ERROR cannot use a `block` macro fragment here
        unsafe $b; //~ ERROR cannot use a `block` macro fragment here
        |x: u8| -> () $b; //~ ERROR cannot use a `block` macro fragment here
    }
}

fn foo() {
    m!({});
}