mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
195 B
Rust
14 lines
195 B
Rust
macro_rules! bar (
|
|
() => ()
|
|
);
|
|
|
|
macro_rules! foo (
|
|
() => (
|
|
#[allow_internal_unstable] //~ ERROR allow_internal_unstable side-steps
|
|
bar!();
|
|
);
|
|
);
|
|
|
|
foo!();
|
|
fn main() {}
|