rust/src/test/ui/numbers-arithmetic/overflowing-add.rs
2020-05-06 14:02:55 +09:00

10 lines
207 B
Rust

// run-fail
// 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;
}