blob: e3aa9f3bf2fd7ec4eb89977b2630109c09155b70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
macro_rules! bar (
() => ()
);
macro_rules! foo (
() => (
#[allow_internal_unstable] //~ ERROR allow_internal_unstable side-steps
bar!();
);
);
foo!();
fn main() {}
|