6 lines
68 B
Rust
6 lines
68 B
Rust
#![deny(arithmetic_overflow)]
|
|
|
|
fn main() {
|
|
let x = 255u8 + 1;
|
|
}
|