rust-clippy/tests/ui/erasing_op.rs
2018-08-29 11:08:29 -07:00

12 lines
149 B
Rust

#![feature(tool_lints)]
#[allow(clippy::no_effect)]
#[warn(clippy::erasing_op)]
fn main() {
let x: u8 = 0;
x * 0;
0 & x;
0 / x;
}