mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			269 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			269 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ edition: 2021
 | |
| 
 | |
| // Regression test for <https://github.com/rust-lang/rust/issues/118904>.
 | |
| // `assert!(true)` and `assert!(!false)` should have similar coverage spans.
 | |
| 
 | |
| fn main() {
 | |
|     assert!(true);
 | |
|     assert!(!false);
 | |
|     assert!(!!true);
 | |
|     assert!(!!!false);
 | |
| }
 | 
