]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issues/issue-33418.stderr
Rollup merge of #92399 - Veeupup:fix_vec_typo, r=Dylan-DPC
[rust.git] / src / test / ui / parser / issues / issue-33418.stderr
1 error: negative bounds are not supported
2   --> $DIR/issue-33418.rs:3:9
3    |
4 LL | trait Tr: !SuperA {}
5    |         ^^^^^^^^^ negative bounds are not supported
6
7 error: negative bounds are not supported
8   --> $DIR/issue-33418.rs:5:19
9    |
10 LL | trait Tr2: SuperA + !SuperB {}
11    |                   ^^^^^^^^^ negative bounds are not supported
12
13 error: negative bounds are not supported
14   --> $DIR/issue-33418.rs:7:10
15    |
16 LL | trait Tr3: !SuperA + SuperB {}
17    |          ^^^^^^^^^ negative bounds are not supported
18
19 error: negative bounds are not supported
20   --> $DIR/issue-33418.rs:9:10
21    |
22 LL | trait Tr4: !SuperA + SuperB
23    |          ^^^^^^^^^
24 LL |     + !SuperC + SuperD {}
25    |     ^^^^^^^^^ negative bounds are not supported
26
27 error: negative bounds are not supported
28   --> $DIR/issue-33418.rs:12:10
29    |
30 LL | trait Tr5: !SuperA
31    |          ^^^^^^^^^
32 LL |     + !SuperB {}
33    |     ^^^^^^^^^ negative bounds are not supported
34
35 error: aborting due to 5 previous errors
36