blob: 2f916701d46314391a95f21f56cf8a06eb5a5b63 [file] [log] [blame] [edit]
//@ run-pass
//@ compile-flags: -Z mir-opt-level=3 -C opt-level=0 -C debuginfo=2
#[inline(never)]
pub fn foo(bar: usize) -> usize {
std::convert::identity(bar)
}
fn main() {
foo(0);
}