summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0054.stderr
blob: d5cf18460fd88b2c2238a4aafe8e584decd5c0f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0054]: cannot cast as `bool`
  --> $DIR/E0054.rs:13:24
   |
LL |     let x_is_nonzero = x as bool; //~ ERROR E0054
   |                        ^^^^^^^^^ unsupported cast
   |
   = help: compare with zero instead

error: aborting due to previous error

For more information about this error, try `rustc --explain E0054`.