]> git.lizzy.rs Git - rust.git/blob - src/test/ui/module-macro_use-arguments.rs
Rollup merge of #99957 - chotchki:ip-globally-reachable_rebase, r=Mark-Simulacrum
[rust.git] / src / test / ui / module-macro_use-arguments.rs
1 #[macro_use(foo, bar)] //~ ERROR arguments to `macro_use` are not allowed here
2 mod foo {
3 }
4
5 fn main() {
6 }