blob: b4cb6a2383013b46b1e01cc19156e257d77e89d9 [file] [log] [blame]
// aux-build:define_macro.rs
macro_rules! bar { () => {} }
define_macro!(bar);
bar!(); //~ ERROR `bar` is ambiguous
macro_rules! m { () => { #[macro_use] extern crate define_macro; } }
m!();
fn main() {}