mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-29 20:15:27 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			227 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			227 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| 
 | |
| #![feature(coroutines)]
 | |
| 
 | |
| fn _run(bar: &mut i32) {
 | |
|     || { //~ WARN unused coroutine that must be used
 | |
|         {
 | |
|             let _baz = &*bar;
 | |
|             yield;
 | |
|         }
 | |
| 
 | |
|         *bar = 2;
 | |
|     };
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
