mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 04:24:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			409 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			409 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| 
 | |
| #![feature(coroutines)]
 | |
| 
 | |
| fn main() {
 | |
|     static || { //~ WARN unused coroutine that must be used
 | |
|         loop {
 | |
|             // Test that `opt` is not live across the yield, even when borrowed in a loop
 | |
|             // See https://github.com/rust-lang/rust/issues/52792
 | |
|             let opt = {
 | |
|                 yield;
 | |
|                 true
 | |
|             };
 | |
|             let _ = &opt;
 | |
|         }
 | |
|     };
 | |
| }
 | 
