rust/tests/ui/consts/issue-67862.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
339 B
Rust
Raw Normal View History

// compile-flags: -Z mir-opt-level=3
// run-pass
fn e220() -> (i64, i64) {
#[inline(never)]
fn get_displacement() -> [i64; 2] {
[139776, 963904]
}
let res = get_displacement();
match (&res[0], &res[1]) {
(arg0, arg1) => (*arg0, *arg1),
}
}
fn main() {
assert_eq!(e220(), (139776, 963904));
}