mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			267 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			267 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| //@ edition: 2021
 | |
| 
 | |
| trait TcpStack {
 | |
|     type Connection<'a>: Sized where Self: 'a;
 | |
|     fn connect<'a>(&'a self) -> Self::Connection<'a>;
 | |
| 
 | |
|     #[allow(async_fn_in_trait)]
 | |
|     async fn async_connect<'a>(&'a self) -> Self::Connection<'a>;
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
