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