2018-12-16 02:50:49 -06:00
|
|
|
error: negative trait bounds are not supported
|
|
|
|
--> $DIR/issue-33418.rs:3:9
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | trait Tr: !SuperA {}
|
2018-12-16 02:50:49 -06:00
|
|
|
| ^^^^^^^^^ help: remove the trait bound
|
|
|
|
|
|
|
|
error: negative trait bounds are not supported
|
|
|
|
--> $DIR/issue-33418.rs:4:19
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | trait Tr2: SuperA + !SuperB {}
|
2018-12-16 02:50:49 -06:00
|
|
|
| ---------^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| help: remove the trait bound
|
|
|
|
|
|
|
|
error: negative trait bounds are not supported
|
|
|
|
--> $DIR/issue-33418.rs:5:10
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | trait Tr3: !SuperA + SuperB {}
|
2018-12-16 02:50:49 -06:00
|
|
|
| ^^^^^^^^^---------
|
|
|
|
| |
|
|
|
|
| help: remove the trait bound
|
|
|
|
|
|
|
|
error: negative trait bounds are not supported
|
|
|
|
--> $DIR/issue-33418.rs:6:10
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | trait Tr4: !SuperA + SuperB
|
2018-12-16 02:50:49 -06:00
|
|
|
| __________-^^^^^^^^
|
|
|
|
LL | | + !SuperC + SuperD {}
|
|
|
|
| |_____^^^^^^^^^________- help: remove the trait bounds
|
|
|
|
|
|
|
|
error: negative trait bounds are not supported
|
|
|
|
--> $DIR/issue-33418.rs:8:10
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | trait Tr5: !SuperA
|
2018-12-16 02:50:49 -06:00
|
|
|
| __________-^^^^^^^^
|
|
|
|
LL | | + !SuperB {}
|
|
|
|
| | ^^^^^^^^-
|
|
|
|
| |_____________|
|
|
|
|
| help: remove the trait bounds
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|