2019-12-08 05:19:53 -06:00
|
|
|
error: negative bounds are not supported
|
2018-12-16 02:50:49 -06:00
|
|
|
--> $DIR/issue-33418.rs:3:9
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | trait Tr: !SuperA {}
|
2019-12-08 05:19:53 -06:00
|
|
|
| ^^^^^^^^^ negative bounds are not supported
|
2018-12-16 02:50:49 -06:00
|
|
|
|
2019-12-08 05:19:53 -06:00
|
|
|
error: negative bounds are not supported
|
2019-03-10 21:46:44 -05:00
|
|
|
--> $DIR/issue-33418.rs:5:19
|
2018-12-16 02:50:49 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | trait Tr2: SuperA + !SuperB {}
|
2019-12-08 05:19:53 -06:00
|
|
|
| ^^^^^^^^^ negative bounds are not supported
|
2018-12-16 02:50:49 -06:00
|
|
|
|
2019-12-08 05:19:53 -06:00
|
|
|
error: negative bounds are not supported
|
2019-03-10 21:46:44 -05:00
|
|
|
--> $DIR/issue-33418.rs:7:10
|
2018-12-16 02:50:49 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | trait Tr3: !SuperA + SuperB {}
|
2019-12-08 05:19:53 -06:00
|
|
|
| ^^^^^^^^^ negative bounds are not supported
|
2018-12-16 02:50:49 -06:00
|
|
|
|
2019-12-08 05:19:53 -06:00
|
|
|
error: negative bounds are not supported
|
2019-03-10 21:46:44 -05:00
|
|
|
--> $DIR/issue-33418.rs:9:10
|
2018-12-16 02:50:49 -06:00
|
|
|
|
|
2019-03-10 21:46:44 -05:00
|
|
|
LL | trait Tr4: !SuperA + SuperB
|
|
|
|
| ^^^^^^^^^
|
|
|
|
LL | + !SuperC + SuperD {}
|
2019-12-08 05:19:53 -06:00
|
|
|
| ^^^^^^^^^ negative bounds are not supported
|
2018-12-16 02:50:49 -06:00
|
|
|
|
2019-12-08 05:19:53 -06:00
|
|
|
error: negative bounds are not supported
|
2019-03-10 21:46:44 -05:00
|
|
|
--> $DIR/issue-33418.rs:12:10
|
2018-12-16 02:50:49 -06:00
|
|
|
|
|
2019-03-10 21:46:44 -05:00
|
|
|
LL | trait Tr5: !SuperA
|
|
|
|
| ^^^^^^^^^
|
|
|
|
LL | + !SuperB {}
|
2019-12-08 05:19:53 -06:00
|
|
|
| ^^^^^^^^^ negative bounds are not supported
|
2018-12-16 02:50:49 -06:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|