summaryrefslogtreecommitdiffstats
path: root/tests/ui/const_prop/unreachable-overflow.rs
blob: 2875135424d2003c1b4b573268ddb7c2d80b4315 (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);
    }
}