2018-12-16 02:50:49 -06:00
|
|
|
// run-rustfix
|
|
|
|
|
2019-03-10 21:46:44 -05:00
|
|
|
trait Tr: !SuperA {}
|
|
|
|
//~^ ERROR negative trait bounds are not supported
|
|
|
|
trait Tr2: SuperA + !SuperB {}
|
|
|
|
//~^ ERROR negative trait bounds are not supported
|
|
|
|
trait Tr3: !SuperA + SuperB {}
|
|
|
|
//~^ ERROR negative trait bounds are not supported
|
|
|
|
trait Tr4: !SuperA + SuperB
|
2018-12-16 02:50:49 -06:00
|
|
|
+ !SuperC + SuperD {}
|
2019-03-10 21:46:44 -05:00
|
|
|
//~^ ERROR negative trait bounds are not supported
|
|
|
|
trait Tr5: !SuperA
|
2018-12-16 02:50:49 -06:00
|
|
|
+ !SuperB {}
|
2019-03-10 21:46:44 -05:00
|
|
|
//~^ ERROR negative trait bounds are not supported
|
2018-12-16 02:50:49 -06:00
|
|
|
|
|
|
|
trait SuperA {}
|
|
|
|
trait SuperB {}
|
|
|
|
trait SuperC {}
|
|
|
|
trait SuperD {}
|
|
|
|
|
|
|
|
fn main() {}
|