]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-32782.rs
Rollup merge of #91804 - woppopo:const_clone, r=oli-obk
[rust.git] / src / test / 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() {}