9 lines
195 B
Rust
9 lines
195 B
Rust
// 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;
|
|
}
|