blob: da7f318282648f32ab1ff9776d1dd00142090c8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0369]: cannot add `{integer}` to `bool`
--> $DIR/binop-typeck.rs:6:15
|
LL | let z = x + y;
| - ^ - {integer}
| |
| bool
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0369`.
|