1
Fork 0
rust/src/test/incremental/warnings-reemitted.rs

11 lines
212 B
Rust
Raw Normal View History

// revisions: cfail1 cfail2 cfail3
// compile-flags: -Coverflow-checks=on
// compile-pass
#![allow(warnings)]
#![warn(const_err)]
fn main() {
255u8 + 1; //~ WARNING this expression will panic at run-time
}