summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/issue-38715.rs
blob: 9a9a501cae157ddb52fa2fa75f2ed26f7b8cd2bf (plain)
1
2
3
4
5
6
7
#[macro_export]
macro_rules! foo { ($i:ident) => {} }

#[macro_export]
macro_rules! foo { () => {} } //~ ERROR the name `foo` is defined multiple times

fn main() {}