blob: fb096c31957ee61ce18fbeeaee246b1712259720 (
plain)
1
2
3
4
5
6
7
8
|
// error-pattern:thread 'main' panicked at 'attempt to subtract with overflow'
// compile-flags: -C debug-assertions
#![allow(arithmetic_overflow)]
fn main() {
let _x = 42u8 - (42u8 + 1);
}
|