rust/tests/incremental/warnings-reemitted.rs

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

10 lines
193 B
Rust
Raw Normal View History

// revisions: cfail1 cfail2 cfail3
// compile-flags: -Coverflow-checks=on
// build-pass
2020-02-18 21:49:47 +00:00
#![warn(arithmetic_overflow)]
fn main() {
2020-02-15 22:02:58 +00:00
let _ = 255u8 + 1; //~ WARNING operation will overflow
}