summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/erasing_op.rs
blob: 1540062a4bc3ea106dbe64d46462f7016e5caf25 (plain)
1
2
3
4
5
6
7
8
9
#[allow(clippy::no_effect)]
#[warn(clippy::erasing_op)]
fn main() {
    let x: u8 = 0;

    x * 0;
    0 & x;
    0 / x;
}