]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-54462-mutable-noalias-correctness.rs
Auto merge of #79113 - andjo403:raw_vec_ptr, r=m-ou-se
[rust.git] / src / test / ui / issues / issue-54462-mutable-noalias-correctness.rs
1 // run-pass
2 //
3 // compile-flags: -Ccodegen-units=1 -O
4
5 fn linidx(row: usize, col: usize) -> usize {
6     row * 1 + col * 3
7 }
8
9 fn main() {
10     let mut mat = [1.0f32, 5.0, 9.0, 2.0, 6.0, 10.0, 3.0, 7.0, 11.0, 4.0, 8.0, 12.0];
11
12     for i in 0..2 {
13         for j in i+1..3 {
14             if mat[linidx(j, 3)] > mat[linidx(i, 3)] {
15                     for k in 0..4 {
16                             let (x, rest) = mat.split_at_mut(linidx(i, k) + 1);
17                             let a = x.last_mut().unwrap();
18                             let b = rest.get_mut(linidx(j, k) - linidx(i, k) - 1).unwrap();
19                             ::std::mem::swap(a, b);
20                     }
21             }
22         }
23     }
24     assert_eq!([9.0, 5.0, 1.0, 10.0, 6.0, 2.0, 11.0, 7.0, 3.0, 12.0, 8.0, 4.0], mat);
25 }