rust/tests/rustdoc-ui/unable-fulfill-trait.rs
2023-10-31 13:58:03 +00:00

15 lines
230 B
Rust

// This test ensures that it's not crashing rustdoc.
pub struct Foo<'a, 'b, T> {
field1: dyn Bar<'a, 'b,>,
//~^ ERROR
//~| ERROR
//~| ERROR
}
pub trait Bar<'x, 's, U>
where U: 'x,
Self:'x,
Self:'s
{}