2019-03-12 00:49:17 +00:00
|
|
|
// aux-build:define-macro.rs
|
2016-11-01 01:35:05 +00:00
|
|
|
|
|
|
|
macro_rules! bar { () => {} }
|
|
|
|
define_macro!(bar);
|
2018-08-28 01:41:07 +03:00
|
|
|
bar!(); //~ ERROR `bar` is ambiguous
|
2016-11-01 01:35:05 +00:00
|
|
|
|
|
|
|
macro_rules! m { () => { #[macro_use] extern crate define_macro; } }
|
|
|
|
m!();
|
|
|
|
|
|
|
|
fn main() {}
|