mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			360 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			360 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // issue #102317
 | |
| // build-pass
 | |
| // compile-flags: --edition 2021 -C opt-level=3 -Zvalidate-mir
 | |
| 
 | |
| struct SegmentJob;
 | |
| 
 | |
| impl Drop for SegmentJob {
 | |
|     fn drop(&mut self) {}
 | |
| }
 | |
| 
 | |
| pub async fn run() -> Result<(), ()> {
 | |
|     let jobs = Vec::<SegmentJob>::new();
 | |
|     let Some(_job) = jobs.into_iter().next() else {
 | |
|         return Ok(())
 | |
|     };
 | |
| 
 | |
|     Ok(())
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
