blob: 38632d2eec337231ddb75939a2c278d91bb76923 [file] [log] [blame] [edit]
//@ check-fail
#![feature(const_block_items)]
macro_rules! foo {
($item:item) => {
$item
//~^ ERROR: expected expression, found ``
};
}
fn main() {
foo!(const {});
}