]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/require-parens-for-chained-comparison.stderr
Rollup merge of #106638 - RalfJung:realstd, r=thomcc
[rust.git] / tests / ui / parser / require-parens-for-chained-comparison.stderr
1 error: comparison operators cannot be chained
2   --> $DIR/require-parens-for-chained-comparison.rs:2:11
3    |
4 LL |     false == false == false;
5    |           ^^       ^^
6    |
7 help: split the comparison into two
8    |
9 LL |     false == false && false == false;
10    |                    ++++++++
11
12 error: comparison operators cannot be chained
13   --> $DIR/require-parens-for-chained-comparison.rs:6:11
14    |
15 LL |     false == 0 < 2;
16    |           ^^   ^
17    |
18 help: parenthesize the comparison
19    |
20 LL |     false == (0 < 2);
21    |              +     +
22
23 error: comparison operators cannot be chained
24   --> $DIR/require-parens-for-chained-comparison.rs:10:6
25    |
26 LL |     f<X>();
27    |      ^ ^
28    |
29 help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
30    |
31 LL |     f::<X>();
32    |      ++
33
34 error: comparison operators cannot be chained
35   --> $DIR/require-parens-for-chained-comparison.rs:14:6
36    |
37 LL |     f<Result<Option<X>, Option<Option<X>>>(1, 2);
38    |      ^      ^
39    |
40 help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
41    |
42 LL |     f::<Result<Option<X>, Option<Option<X>>>(1, 2);
43    |      ++
44
45 error: expected one of `!`, `.`, `::`, `;`, `?`, `else`, `{`, or an operator, found `,`
46   --> $DIR/require-parens-for-chained-comparison.rs:18:17
47    |
48 LL |     let _ = f<u8, i8>();
49    |                 ^ expected one of 8 possible tokens
50    |
51 help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
52    |
53 LL |     let _ = f::<u8, i8>();
54    |              ++
55
56 error: expected `while`, `for`, `loop` or `{` after a label
57   --> $DIR/require-parens-for-chained-comparison.rs:22:17
58    |
59 LL |     let _ = f<'_, i8>();
60    |                 ^ expected `while`, `for`, `loop` or `{` after a label
61    |
62 help: add `'` to close the char literal
63    |
64 LL |     let _ = f<'_', i8>();
65    |                 +
66
67 error: expected one of `.`, `:`, `;`, `?`, `else`, `for`, `loop`, `while`, or an operator, found `,`
68   --> $DIR/require-parens-for-chained-comparison.rs:22:17
69    |
70 LL |     let _ = f<'_, i8>();
71    |                 ^ expected one of 9 possible tokens
72    |
73 help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
74    |
75 LL |     let _ = f::<'_, i8>();
76    |              ++
77
78 error: expected `while`, `for`, `loop` or `{` after a label
79   --> $DIR/require-parens-for-chained-comparison.rs:28:9
80    |
81 LL |     f<'_>();
82    |         ^ expected `while`, `for`, `loop` or `{` after a label
83    |
84 help: add `'` to close the char literal
85    |
86 LL |     f<'_'>();
87    |         +
88
89 error: comparison operators cannot be chained
90   --> $DIR/require-parens-for-chained-comparison.rs:28:6
91    |
92 LL |     f<'_>();
93    |      ^  ^
94    |
95 help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
96    |
97 LL |     f::<'_>();
98    |      ++
99
100 error: comparison operators cannot be chained
101   --> $DIR/require-parens-for-chained-comparison.rs:34:14
102    |
103 LL |     let _ = f<u8>;
104    |              ^  ^
105    |
106    = help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
107    = help: or use `(...)` if you meant to specify fn arguments
108
109 error: aborting due to 10 previous errors
110