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