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