rust/tests/ui/issues/issue-58857.rs
2023-01-11 09:32:08 +00:00

8 lines
124 B
Rust

struct Conj<A> {a : A}
trait Valid {}
impl<A: !Valid> Conj<A>{}
//~^ ERROR negative bounds are not supported
fn main() {}