]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/issue-38715.rs
Auto merge of #95833 - notriddle:notriddle/human-readable-signals, r=yaahc
[rust.git] / src / test / ui / macros / issue-38715.rs
1 #[macro_export]
2 macro_rules! foo { ($i:ident) => {} }
3
4 #[macro_export]
5 macro_rules! foo { () => {} } //~ ERROR the name `foo` is defined multiple times
6
7 fn main() {}