mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			203 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			203 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// This test ensures that it's not crashing rustdoc.
 | 
						|
 | 
						|
pub struct Foo<'a, 'b, T> {
 | 
						|
    field1: dyn Bar<'a, 'b>,
 | 
						|
    //~^ ERROR
 | 
						|
}
 | 
						|
 | 
						|
pub trait Bar<'x, 's, U>
 | 
						|
where
 | 
						|
    U: 'x,
 | 
						|
    Self: 'x,
 | 
						|
    Self: 's,
 | 
						|
{
 | 
						|
}
 |