os-rust/src/test/ui/binop/binop-mul-bool.stderr

12 lines
335 B
Text
Raw Normal View History

2019-12-10 22:03:13 +01:00
error[E0369]: cannot multiply `bool` to `bool`
--> $DIR/binop-mul-bool.rs:3:26
2018-08-08 14:28:26 +02:00
|
LL | fn main() { let x = true * false; }
| ---- ^ ----- bool
| |
| bool
2018-08-08 14:28:26 +02:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0369`.