blob: 7035708224808de3539917160b98b5d8895eb2f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// This test ensures that it's not crashing rustdoc.
pub struct Foo<'a, 'b, T> {
field1: dyn Bar<'a, 'b,>,
//~^ ERROR
//~^^ ERROR
}
pub trait Bar<'x, 's, U>
where U: 'x,
Self:'x,
Self:'s
{}
|