rust/src/test/ui/issues/issue-38715.rs
2018-12-25 21:08:33 -07:00

9 lines
240 B
Rust

#[macro_export]
macro_rules! foo { ($i:ident) => {} }
#[macro_export]
macro_rules! foo { () => {} } //~ ERROR a macro named `foo` has already been exported
//~| WARN this was previously accepted
fn main() {}