1 2 3 4 5 6 7
struct Conj<A> {a : A} trait Valid {} impl<A: !Valid> Conj<A>{} //~^ ERROR negative bounds are not supported fn main() {}