mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			467 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			467 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ edition: 2021
 | |
| //@ run-rustfix
 | |
| 
 | |
| #![allow(unused)]
 | |
| 
 | |
| use std::future::Future;
 | |
| use std::pin::Pin;
 | |
| use std::task::{Context, Poll};
 | |
| 
 | |
| #[derive(Clone)]
 | |
| struct SharedFuture;
 | |
| 
 | |
| impl Future for SharedFuture {
 | |
|     type Output = ();
 | |
| 
 | |
|     fn poll(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<<Self as Future>::Output> {
 | |
|         todo!()
 | |
|     }
 | |
| }
 | |
| 
 | |
| async fn foo() {
 | |
|     let f = SharedFuture;
 | |
|     f.clone().await;
 | |
|     f.await;
 | |
|     //~^ ERROR use of moved value
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
