mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-11-04 02:07:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			156 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			156 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// check-pass
 | 
						|
// edition:2018
 | 
						|
 | 
						|
// See issue 60414
 | 
						|
 | 
						|
trait Trait {
 | 
						|
    type Assoc;
 | 
						|
}
 | 
						|
 | 
						|
async fn foo<T: Trait<Assoc=()>>() -> T::Assoc {
 | 
						|
    ()
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |