]> git.lizzy.rs Git - rust.git/blob - tests/ui/did_you_mean/issue-54109-and_instead_of_ampersands.stderr
Rollup merge of #106664 - chenyukang:yukang/fix-106597-remove-lseek, r=cuviper
[rust.git] / tests / ui / did_you_mean / issue-54109-and_instead_of_ampersands.stderr
1 error: `and` is not a logical operator
2   --> $DIR/issue-54109-and_instead_of_ampersands.rs:7:15
3    |
4 LL |     let _ = a and b;
5    |               ^^^ help: use `&&` to perform logical conjunction
6    |
7    = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
8
9 error: `and` is not a logical operator
10   --> $DIR/issue-54109-and_instead_of_ampersands.rs:9:10
11    |
12 LL |     if a and b {
13    |          ^^^ help: use `&&` to perform logical conjunction
14    |
15    = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
16
17 error: `or` is not a logical operator
18   --> $DIR/issue-54109-and_instead_of_ampersands.rs:20:15
19    |
20 LL |     let _ = a or b;
21    |               ^^ help: use `||` to perform logical disjunction
22    |
23    = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
24
25 error: `or` is not a logical operator
26   --> $DIR/issue-54109-and_instead_of_ampersands.rs:22:10
27    |
28 LL |     if a or b {
29    |          ^^ help: use `||` to perform logical disjunction
30    |
31    = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
32
33 error: `and` is not a logical operator
34   --> $DIR/issue-54109-and_instead_of_ampersands.rs:30:11
35    |
36 LL |     if (a and b) {
37    |           ^^^ help: use `&&` to perform logical conjunction
38    |
39    = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
40
41 error: `or` is not a logical operator
42   --> $DIR/issue-54109-and_instead_of_ampersands.rs:38:11
43    |
44 LL |     if (a or b) {
45    |           ^^ help: use `||` to perform logical disjunction
46    |
47    = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
48
49 error: `and` is not a logical operator
50   --> $DIR/issue-54109-and_instead_of_ampersands.rs:46:13
51    |
52 LL |     while a and b {
53    |             ^^^ help: use `&&` to perform logical conjunction
54    |
55    = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
56
57 error: `or` is not a logical operator
58   --> $DIR/issue-54109-and_instead_of_ampersands.rs:54:13
59    |
60 LL |     while a or b {
61    |             ^^ help: use `||` to perform logical disjunction
62    |
63    = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
64
65 error[E0308]: mismatched types
66   --> $DIR/issue-54109-and_instead_of_ampersands.rs:13:33
67    |
68 LL |     let _recovery_witness: () = 0;
69    |                            --   ^ expected `()`, found integer
70    |                            |
71    |                            expected due to this
72
73 error: aborting due to 9 previous errors
74
75 For more information about this error, try `rustc --explain E0308`.