2016-04-06 17:43:03 -05:00
|
|
|
macro_rules! bar (
|
|
|
|
() => ()
|
|
|
|
);
|
2015-02-15 16:49:55 -06:00
|
|
|
|
2016-04-06 17:43:03 -05:00
|
|
|
macro_rules! foo (
|
|
|
|
() => (
|
|
|
|
#[allow_internal_unstable] //~ ERROR allow_internal_unstable side-steps
|
|
|
|
bar!();
|
|
|
|
);
|
|
|
|
);
|
2015-02-15 16:49:55 -06:00
|
|
|
|
2016-04-06 17:43:03 -05:00
|
|
|
foo!();
|
|
|
|
fn main() {}
|