blob: 52f6af78a9be5f00f893910254297b2bf1141ca8 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0054]: cannot cast as `bool`
--> $DIR/cast-rfc0401-2.rs:6:13
|
LL | let _ = 3 as bool;
| ^^^^^^^^^ help: compare with zero instead: `3 != 0`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0054`.
|