mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			386 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			386 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// check-pass
 | 
						|
// edition: 2021
 | 
						|
 | 
						|
#![feature(return_position_impl_trait_in_trait)]
 | 
						|
#![allow(incomplete_features)]
 | 
						|
 | 
						|
use std::fmt::Debug;
 | 
						|
 | 
						|
trait Foo<Item> {
 | 
						|
    fn foo<'a>(&'a self) -> impl Debug
 | 
						|
    where
 | 
						|
        Item: 'a;
 | 
						|
}
 | 
						|
 | 
						|
impl<Item, D: Debug + Clone> Foo<Item> for D {
 | 
						|
    fn foo<'a>(&'a self) -> impl Debug
 | 
						|
    where
 | 
						|
        Item: 'a,
 | 
						|
    {
 | 
						|
        self.clone()
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |