Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct Conj<A> {a : A}
trait Valid {}
impl<A: !Valid> Conj<A>{}
//~^ ERROR negative bounds are not supported
fn main() {}