]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-32782.rs
Auto merge of #106827 - alexcrichton:update-llvm-to-15.0.7, r=cuviper
[rust.git] / tests / ui / issues / issue-32782.rs
1 macro_rules! bar (
2     () => ()
3 );
4
5 macro_rules! foo (
6     () => (
7         #[allow_internal_unstable] //~ ERROR allow_internal_unstable side-steps
8         bar!();
9     );
10 );
11
12 foo!();
13 fn main() {}