rust/tests/ui/const_prop/unreachable-overflow.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
161 B
Rust
Raw Permalink Normal View History

// 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);
}
}