rust/tests/ui/parser/require-parens-for-chained-comparison.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

111 lines
3.1 KiB
Plaintext
Raw Normal View History

error: comparison operators cannot be chained
--> $DIR/require-parens-for-chained-comparison.rs:2:11
2018-10-20 20:36:17 +00:00
|
LL | false == false == false;
| ^^ ^^
|
help: split the comparison into two
|
LL | false == false && false == false;
| ++++++++
2018-10-20 20:36:17 +00:00
error: comparison operators cannot be chained
--> $DIR/require-parens-for-chained-comparison.rs:6:11
2018-10-20 20:36:17 +00:00
|
LL | false == 0 < 2;
| ^^ ^
|
help: parenthesize the comparison
|
LL | false == (0 < 2);
| + +
2018-10-20 20:36:17 +00:00
error: comparison operators cannot be chained
--> $DIR/require-parens-for-chained-comparison.rs:10:6
2018-10-20 20:36:17 +00:00
|
LL | f<X>();
| ^ ^
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
2018-10-20 20:36:17 +00:00
|
LL | f::<X>();
| ++
error: comparison operators cannot be chained
--> $DIR/require-parens-for-chained-comparison.rs:14:6
|
LL | f<Result<Option<X>, Option<Option<X>>>(1, 2);
| ^ ^
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
LL | f::<Result<Option<X>, Option<Option<X>>>(1, 2);
| ++
2018-10-20 20:36:17 +00:00
error: expected one of `!`, `.`, `::`, `;`, `?`, `else`, `{`, or an operator, found `,`
--> $DIR/require-parens-for-chained-comparison.rs:18:17
|
LL | let _ = f<u8, i8>();
| ^ expected one of 8 possible tokens
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
LL | let _ = f::<u8, i8>();
| ++
error: expected `while`, `for`, `loop` or `{` after a label
--> $DIR/require-parens-for-chained-comparison.rs:22:17
|
LL | let _ = f<'_, i8>();
| ^ expected `while`, `for`, `loop` or `{` after a label
|
help: add `'` to close the char literal
|
LL | let _ = f<'_', i8>();
| +
error: expected one of `.`, `:`, `;`, `?`, `else`, `for`, `loop`, `while`, or an operator, found `,`
--> $DIR/require-parens-for-chained-comparison.rs:22:17
|
LL | let _ = f<'_, i8>();
| ^ expected one of 9 possible tokens
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
LL | let _ = f::<'_, i8>();
| ++
error: expected `while`, `for`, `loop` or `{` after a label
--> $DIR/require-parens-for-chained-comparison.rs:28:9
|
LL | f<'_>();
| ^ expected `while`, `for`, `loop` or `{` after a label
|
help: add `'` to close the char literal
|
LL | f<'_'>();
| +
error: comparison operators cannot be chained
--> $DIR/require-parens-for-chained-comparison.rs:28:6
|
LL | f<'_>();
| ^ ^
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
LL | f::<'_>();
| ++
error: comparison operators cannot be chained
--> $DIR/require-parens-for-chained-comparison.rs:34:14
2019-10-01 18:24:05 +00:00
|
LL | let _ = f<u8>;
| ^ ^
2019-10-01 18:24:05 +00:00
|
= help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
2019-10-01 18:24:05 +00:00
= help: or use `(...)` if you meant to specify fn arguments
error: aborting due to 10 previous errors
2018-10-20 20:36:17 +00:00