blob: 2dfc9bb5ae472d7e7f0cf73bff94580b68c17464 [file] [log] [blame]
// error-pattern:thread 'main' panicked at 'attempt to multiply with overflow'
// compile-flags: -C debug-assertions
#![allow(arithmetic_overflow)]
fn main() {
let x = 200u8 * 4;
}