mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
16 lines
266 B
Rust
16 lines
266 B
Rust
//@ build-pass
|
|
//@ compile-flags: -Zmir-opt-level=3
|
|
// Overflow can't be detected by const prop
|
|
// could only be detected after optimizations
|
|
|
|
#![deny(warnings)]
|
|
|
|
fn main() {
|
|
let _ = add(u8::MAX, 1);
|
|
}
|
|
|
|
#[inline(always)]
|
|
fn add(x: u8, y: u8) -> u8 {
|
|
x + y
|
|
}
|