mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-11-04 00:38:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			570 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			570 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// Test that duplicate matcher binding names are caught at declaration time, rather than at macro
 | 
						|
// invocation time.
 | 
						|
 | 
						|
#![allow(unused_macros)]
 | 
						|
 | 
						|
macro_rules! foo1 {
 | 
						|
    ($a:ident, $a:ident) => {}; //~ERROR duplicate matcher binding
 | 
						|
    ($a:ident, $a:path) => {};  //~ERROR duplicate matcher binding
 | 
						|
}
 | 
						|
 | 
						|
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
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |