blob: 392e4ea0c2ecc2ca65d99dcc1dc02cb320e056b3 [file] [log] [blame]
struct Conj<A> {a : A}
trait Valid {}
impl<A: !Valid> Conj<A>{}
//~^ ERROR negative trait bounds are not supported
fn main() {}