mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			333 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			333 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ revisions: cfail1 cfail2 cfail3
 | |
| //@ build-pass (FIXME(62277): could be check-pass?)
 | |
| 
 | |
| // This test case makes sure that we can compile with incremental compilation
 | |
| // enabled when there are macros exported from this crate. (See #37756)
 | |
| 
 | |
| #![crate_type="rlib"]
 | |
| 
 | |
| #[macro_export]
 | |
| macro_rules! some_macro {
 | |
|     ($e:expr) => ($e + 1)
 | |
| }
 | 
