summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const_prop/inline_spans_lint_attribute.rs
blob: 1db53d77193f2486ce0dd1e827decf7897788df5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Must be build-pass, because check-pass will not run const prop and thus not emit the lint anyway.
// build-pass
// compile-flags: -Zmir-opt-level=3

#![deny(warnings)]

fn main() {
    #[allow(arithmetic_overflow)]
    let _ = add(u8::MAX, 1);
}

#[inline(always)]
fn add(x: u8, y: u8) -> u8 {
    x + y
}