mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			208 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			208 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ proc-macro: test-macros.rs
 | |
| 
 | |
| #[macro_use]
 | |
| extern crate test_macros;
 | |
| 
 | |
| macro_rules! id {
 | |
|     ($($t:tt)*) => ($($t)*)
 | |
| }
 | |
| 
 | |
| #[identity_attr]
 | |
| id![static X: u32 = 'a';]; //~ ERROR: mismatched types
 | |
| 
 | |
| 
 | |
| fn main() {}
 | 
