mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			205 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			205 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// Regression test for issue #91227.
 | 
						|
 | 
						|
// run-rustfix
 | 
						|
 | 
						|
#![allow(unused_macros)]
 | 
						|
 | 
						|
macro_rules! thing {
 | 
						|
//~^ ERROR: expected one of
 | 
						|
//~| HELP: perhaps you meant to define a macro
 | 
						|
    () => {}
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |