mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			151 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			151 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| 
 | |
| macro_rules! m1 {
 | |
|     ($tt:tt #) => ()
 | |
| }
 | |
| 
 | |
| macro_rules! m2 {
 | |
|     ($tt:tt) => ()
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     m1!(r#"abc"##);
 | |
|     m2!(r#"abc"#);
 | |
| }
 | 
