]> git.proxmox.com Git - rustc.git/blob - tests/ui/duplicate/duplicate-check-macro-exports.rs
New upstream version 1.68.2+dfsg1
[rustc.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() {}