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