Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// 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,
{