]> git.lizzy.rs Git - rust.git/blob - tests/ui/duplicate/duplicate-check-macro-exports.rs
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / duplicate / duplicate-check-macro-exports.rs
1 pub use std::panic;
2
3 #[macro_export]
4 macro_rules! panic { () => {} } //~ ERROR the name `panic` is defined multiple times
5
6 fn main() {}