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

11 lines
247 B
Rust
Raw Normal View History

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