1 2 3 4 5 6 7 8 9
// check-pass #![feature(negative_bounds)] //~^ WARN the feature `negative_bounds` is incomplete trait A: !B {} trait B: !A {} fn main() {}