rust/tests/ui/macros/macro-multiple-matcher-bindings.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
570 B
Rust
Raw Normal View History

2019-01-15 16:55:23 -06:00
// Test that duplicate matcher binding names are caught at declaration time, rather than at macro
// invocation time.
#![allow(unused_macros)]
2019-01-15 16:55:23 -06:00
macro_rules! foo1 {
($a:ident, $a:ident) => {}; //~ERROR duplicate matcher binding
($a:ident, $a:path) => {}; //~ERROR duplicate matcher binding
2019-01-15 16:55:23 -06:00
}
macro_rules! foo2 {
($a:ident) => {}; // OK
($a:path) => {}; // OK
}
macro_rules! foo3 {
($a:ident, $($a:ident),*) => {}; //~ERROR duplicate matcher binding
($($a:ident)+ # $($($a:path),+);*) => {}; //~ERROR duplicate matcher binding
2019-01-15 16:55:23 -06:00
}
fn main() {}