mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			129 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			129 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(test)]
 | |
| // edition: 2021
 | |
| // compile-flags: --test
 | |
| 
 | |
| extern crate test;
 | |
| 
 | |
| #[bench]
 | |
| fn my_bench(_b: &mut test::Bencher) {}
 | 
