blob: 49dce32072b61481539d5d8919267936f7ff19b3 [file] [log] [blame]
// 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,
{
}