]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/require-parens-for-chained-comparison.stderr
Bless nll tests.
[rust.git] / src / test / 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 one of `.`, `:`, `;`, `?`, `else`, `for`, `loop`, `while`, `{`, or an operator, found `,`
57   --> $DIR/require-parens-for-chained-comparison.rs:22:17
58    |
59 LL |     let _ = f<'_, i8>();
60    |                 ^ expected one of 10 possible tokens
61    |
62 help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
63    |
64 LL |     let _ = f::<'_, i8>();
65    |              ++
66
67 error: comparison operators cannot be chained
68   --> $DIR/require-parens-for-chained-comparison.rs:26:6
69    |
70 LL |     f<'_>();
71    |      ^  ^
72    |
73 help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
74    |
75 LL |     f::<'_>();
76    |      ++
77
78 error: comparison operators cannot be chained
79   --> $DIR/require-parens-for-chained-comparison.rs:30:14
80    |
81 LL |     let _ = f<u8>;
82    |              ^  ^
83    |
84    = help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
85    = help: or use `(...)` if you meant to specify fn arguments
86
87 error: aborting due to 8 previous errors
88