1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
error[E0308]: mismatched types
--> $DIR/assignment-expected-bool.rs:6:19
|
LL | let _: bool = 0 = 0;
| ^^^^^ expected `bool`, found `()`
|
help: you might have meant to compare for equality
|
LL | let _: bool = 0 == 0;
| +
error[E0308]: mismatched types
--> $DIR/assignment-expected-bool.rs:9:14
|
LL | 0 => 0 = 0,
| ^^^^^ expected `bool`, found `()`
|
help: you might have meant to compare for equality
|
LL | 0 => 0 == 0,
| +
error[E0308]: mismatched types
--> $DIR/assignment-expected-bool.rs:10:14
|
LL | _ => 0 = 0,
| ^^^^^ expected `bool`, found `()`
|
help: you might have meant to compare for equality
|
LL | _ => 0 == 0,
| +
error[E0308]: mismatched types
--> $DIR/assignment-expected-bool.rs:14:17
|
LL | true => 0 = 0,
| ^^^^^ expected `bool`, found `()`
|
help: you might have meant to compare for equality
|
LL | true => 0 == 0,
| +
error[E0308]: mismatched types
--> $DIR/assignment-expected-bool.rs:18:8
|
LL | if 0 = 0 {}
| ^^^^^ expected `bool`, found `()`
|
help: you might have meant to compare for equality
|
LL | if 0 == 0 {}
| +
error[E0308]: mismatched types
--> $DIR/assignment-expected-bool.rs:20:24
|
LL | let _: bool = if { 0 = 0 } {
| ^^^^^ expected `bool`, found `()`
|
help: you might have meant to compare for equality
|
LL | let _: bool = if { 0 == 0 } {
| +
error[E0308]: mismatched types
--> $DIR/assignment-expected-bool.rs:21:9
|
LL | 0 = 0
| ^^^^^ expected `bool`, found `()`
|
help: you might have meant to compare for equality
|
LL | 0 == 0
| +
error[E0308]: mismatched types
--> $DIR/assignment-expected-bool.rs:23:9
|
LL | 0 = 0
| ^^^^^ expected `bool`, found `()`
|
help: you might have meant to compare for equality
|
LL | 0 == 0
| +
error[E0308]: mismatched types
--> $DIR/assignment-expected-bool.rs:26:13
|
LL | let _ = (0 = 0)
| ^^^^^^^ expected `bool`, found `()`
|
help: you might have meant to compare for equality
|
LL | let _ = (0 == 0)
| +
error[E0308]: mismatched types
--> $DIR/assignment-expected-bool.rs:27:14
|
LL | && { 0 = 0 }
| ^^^^^ expected `bool`, found `()`
|
help: you might have meant to compare for equality
|
LL | && { 0 == 0 }
| +
error[E0308]: mismatched types
--> $DIR/assignment-expected-bool.rs:28:12
|
LL | || (0 = 0);
| ^^^^^^^ expected `bool`, found `()`
|
help: you might have meant to compare for equality
|
LL | || (0 == 0);
| +
error[E0070]: invalid left-hand side of assignment
--> $DIR/assignment-expected-bool.rs:31:22
|
LL | let _: usize = 0 = 0;
| - ^
| |
| cannot assign to this expression
error[E0308]: mismatched types
--> $DIR/assignment-expected-bool.rs:31:20
|
LL | let _: usize = 0 = 0;
| ----- ^^^^^ expected `usize`, found `()`
| |
| expected due to this
error[E0308]: mismatched types
--> $DIR/assignment-expected-bool.rs:37:8
|
LL | if foo = bar {}
| ^^^^^^^^^ expected `bool`, found `()`
|
help: you might have meant to compare for equality
|
LL | if foo == bar {}
| +
error: aborting due to 14 previous errors
Some errors have detailed explanations: E0070, E0308.
For more information about an error, try `rustc --explain E0070`.
|