]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0054.rs
Merge commit '0cb0f7636851f9fcc57085cf80197a2ef6db098f' into clippyup
[rust.git] / src / test / ui / error-codes / E0054.rs
1 fn main() {
2     let x = 5;
3     let x_is_nonzero = x as bool; //~ ERROR E0054
4 }