]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-58857.rs
Enable full revision in const generics ui tests
[rust.git] / src / test / ui / issues / issue-58857.rs
1 struct Conj<A> {a : A}
2 trait Valid {}
3
4 impl<A: !Valid> Conj<A>{}
5 //~^ ERROR negative bounds are not supported
6
7 fn main() {}