blob: 5ca91314d95a25deac58a5676b5e9631d5fe8301 [file] [log] [blame]
// error-pattern:thread 'main' panicked at 'attempt to add with overflow'
// compile-flags: -C debug-assertions
#![allow(arithmetic_overflow)]
fn main() {
let _x = 200u8 + 200u8 + 200u8;
}