about summary refs log tree commit diff
path: root/tests/ui/const_prop/unreachable-overflow.rs
blob: 25cc3db77fd4791d688c267c41a92081094c4dcd (plain)
1
2
3
4
5
6
7
8
9
10
// Use `build-pass` to ensure const-prop lint runs.
//@ build-pass

fn main() {
    let x = 2u32;
    let y = 3u32;
    if y <= x {
        dbg!(x - y);
    }
}