mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			271 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			271 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-rustfix
 | |
| 
 | |
| // check to make sure that we suggest adding `move` after `static`
 | |
| 
 | |
| #![feature(coroutines)]
 | |
| 
 | |
| fn check() -> impl Sized {
 | |
|     let x = 0;
 | |
|     #[coroutine]
 | |
|     static || {
 | |
|         //~^ ERROR E0373
 | |
|         yield;
 | |
|         x
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     check();
 | |
| }
 | 
