mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
14 lines
215 B
Rust
14 lines
215 B
Rust
// 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
|
|
{}
|