mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			324 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			324 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(coroutines)]
 | |
| 
 | |
| fn main() {
 | |
|     #[coroutine]
 | |
|     || {
 | |
|         // The reference in `_a` is a Legal with NLL since it ends before the yield
 | |
|         let _a = &mut true;
 | |
|         let b = &mut true;
 | |
|         //~^ ERROR borrow may still be in use when coroutine yields
 | |
|         yield ();
 | |
|         println!("{}", b);
 | |
|     };
 | |
| }
 | 
