mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	 a573880373
			
		
	
	
		a573880373
		
	
	
	
	
		
			
			This makes it more consistent with the `coverage-map` mode and the shared `tests/coverage` test directory.
		
			
				
	
	
		
			10 lines
		
	
	
		
			313 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			313 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| /// A function run only from within doctests
 | |
| pub fn fn_run_in_doctests(conditional: usize) {
 | |
|     match conditional {
 | |
|         1 => assert_eq!(1, 1), // this is run,
 | |
|         2 => assert_eq!(1, 1), // this,
 | |
|         3 => assert_eq!(1, 1), // and this too
 | |
|         _ => assert_eq!(1, 2), // however this is not
 | |
|     }
 | |
| }
 |