mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			288 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			288 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// Regression test for #35593. Check that we can reuse this trivially
 | 
						|
// equal example.
 | 
						|
 | 
						|
//@ revisions:rpass1 rpass2
 | 
						|
//@ compile-flags: -Z query-dep-graph
 | 
						|
 | 
						|
#![feature(rustc_attrs)]
 | 
						|
#![rustc_partition_reused(module="issue_35593", cfg="rpass2")]
 | 
						|
 | 
						|
fn main() {
 | 
						|
    println!("hello world");
 | 
						|
}
 |