mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			208 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			208 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // This was triggering an assertion failure in `NodeRange::new`.
 | |
| 
 | |
| //@ check-pass
 | |
| 
 | |
| #![feature(cfg_eval)]
 | |
| #![feature(stmt_expr_attributes)]
 | |
| 
 | |
| fn f() -> u32 {
 | |
|     #[cfg_eval] #[cfg(not(FALSE))] 0
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
