mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			250 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			250 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| #![allow(non_camel_case_types)]
 | |
| 
 | |
| 
 | |
| fn bar() {}
 | |
| 
 | |
| include!(concat!("", "", "auxiliary/", "macro-include-items-item.rs"));
 | |
| 
 | |
| fn main() {
 | |
|     foo();
 | |
|     assert_eq!(include!(concat!("", "auxiliary/", "macro-include-items-expr.rs")), 1_usize);
 | |
| }
 | 
