rust/tests/ui/did_you_mean/issue-54109-and_instead_of_ampersands.stderr

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

108 lines
3.0 KiB
Plaintext
Raw Permalink Normal View History

2019-12-03 10:19:58 +01:00
error: `and` is not a logical operator
--> $DIR/issue-54109-and_instead_of_ampersands.rs:7:15
|
LL | let _ = a and b;
| ^^^
2019-12-03 10:19:58 +01:00
|
2022-09-15 22:39:16 +08:00
= note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
help: use `&&` to perform logical conjunction
|
LL | let _ = a && b;
| ~~
2019-12-03 10:19:58 +01:00
error: `and` is not a logical operator
--> $DIR/issue-54109-and_instead_of_ampersands.rs:9:10
2018-09-13 15:54:25 +03:00
|
LL | if a and b {
| ^^^
2019-12-03 10:19:58 +01:00
|
2022-09-15 22:39:16 +08:00
= note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
help: use `&&` to perform logical conjunction
|
LL | if a && b {
| ~~
2019-12-03 10:19:58 +01:00
error: `or` is not a logical operator
--> $DIR/issue-54109-and_instead_of_ampersands.rs:20:15
2019-12-03 10:19:58 +01:00
|
LL | let _ = a or b;
| ^^
2019-12-03 10:19:58 +01:00
|
2022-09-15 22:39:16 +08:00
= note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
help: use `||` to perform logical disjunction
|
LL | let _ = a || b;
| ~~
2018-09-13 15:54:25 +03:00
2019-12-03 10:19:58 +01:00
error: `or` is not a logical operator
--> $DIR/issue-54109-and_instead_of_ampersands.rs:22:10
2018-09-13 15:54:25 +03:00
|
LL | if a or b {
| ^^
2019-12-03 10:19:58 +01:00
|
2022-09-15 22:39:16 +08:00
= note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
help: use `||` to perform logical disjunction
|
LL | if a || b {
| ~~
2018-09-13 15:54:25 +03:00
2019-12-03 10:19:58 +01:00
error: `and` is not a logical operator
--> $DIR/issue-54109-and_instead_of_ampersands.rs:30:11
2018-09-13 15:54:25 +03:00
|
LL | if (a and b) {
| ^^^
2019-12-03 10:19:58 +01:00
|
2022-09-15 22:39:16 +08:00
= note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
help: use `&&` to perform logical conjunction
|
LL | if (a && b) {
| ~~
2018-09-13 15:54:25 +03:00
2019-12-03 10:19:58 +01:00
error: `or` is not a logical operator
--> $DIR/issue-54109-and_instead_of_ampersands.rs:38:11
2018-09-13 15:54:25 +03:00
|
LL | if (a or b) {
| ^^
2019-12-03 10:19:58 +01:00
|
2022-09-15 22:39:16 +08:00
= note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
help: use `||` to perform logical disjunction
|
LL | if (a || b) {
| ~~
2018-09-13 15:54:25 +03:00
2019-12-03 10:19:58 +01:00
error: `and` is not a logical operator
--> $DIR/issue-54109-and_instead_of_ampersands.rs:46:13
2018-09-13 20:51:29 +03:00
|
LL | while a and b {
| ^^^
2019-12-03 10:19:58 +01:00
|
2022-09-15 22:39:16 +08:00
= note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
help: use `&&` to perform logical conjunction
|
LL | while a && b {
| ~~
2018-09-13 20:51:29 +03:00
2019-12-03 10:19:58 +01:00
error: `or` is not a logical operator
--> $DIR/issue-54109-and_instead_of_ampersands.rs:54:13
2018-09-13 20:51:29 +03:00
|
LL | while a or b {
| ^^
2019-12-03 10:19:58 +01:00
|
2022-09-15 22:39:16 +08:00
= note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
help: use `||` to perform logical disjunction
|
LL | while a || b {
| ~~
2019-12-03 10:19:58 +01:00
error[E0308]: mismatched types
--> $DIR/issue-54109-and_instead_of_ampersands.rs:13:33
2019-12-03 10:19:58 +01:00
|
LL | let _recovery_witness: () = 0;
| -- ^ expected `()`, found integer
| |
| expected due to this
2018-09-13 20:51:29 +03:00
error: aborting due to 9 previous errors
2018-09-13 20:51:29 +03:00
2019-12-03 10:19:58 +01:00
For more information about this error, try `rustc --explain E0308`.