mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			429 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			429 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ build-pass
 | |
| 
 | |
| #![feature(coroutines, stmt_expr_attributes)]
 | |
| #![allow(unused_assignments, dead_code)]
 | |
| 
 | |
| fn main() {
 | |
|     let _ = #[coroutine]
 | |
|     || {
 | |
|         let mut x = vec![22_usize];
 | |
|         std::mem::drop(x);
 | |
|         match y() {
 | |
|             true if {
 | |
|                 x = vec![];
 | |
|                 false
 | |
|             } => {}
 | |
|             _ => {
 | |
|                 yield;
 | |
|             }
 | |
|         }
 | |
|     };
 | |
| }
 | |
| 
 | |
| fn y() -> bool {
 | |
|     true
 | |
| }
 | 
