]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/shadow.rs
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[rust.git] / src / test / ui / proc-macro / shadow.rs
1 // aux-build:test-macros.rs
2
3 #[macro_use]
4 extern crate test_macros;
5 #[macro_use]
6 extern crate test_macros; //~ ERROR the name `test_macros` is defined multiple times
7
8 fn main() {}