mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			578 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			578 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // check-pass
 | |
| // [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
 | |
| // revisions: current next
 | |
| 
 | |
| #![feature(return_position_impl_trait_in_trait)]
 | |
| //~^ WARN the feature `return_position_impl_trait_in_trait` is incomplete
 | |
| 
 | |
| trait Trait {
 | |
|     type Type;
 | |
| 
 | |
|     // Check that we're adjusting bound vars correctly when installing the default
 | |
|     // method projection assumptions.
 | |
|     fn method(&self) -> impl Trait<Type = impl Sized + '_>;
 | |
| }
 | |
| 
 | |
| trait Trait2 {
 | |
|     type Type;
 | |
| 
 | |
|     fn method(&self) -> impl Trait2<Type = impl Trait2<Type = impl Sized + '_> + '_>;
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
