blob: e86b40d30dcf0c19b39a97f52ce3abf966001124 [file] [log] [blame]
//@ run-pass
//@ pretty-expanded FIXME #23616
#![allow(non_camel_case_types)]
macro_rules! define_vec {
() => (
mod foo {
#[derive(PartialEq)]
pub struct bar;
}
)
}
define_vec![];
pub fn main() {}