blob: 9f3659aac16376d4200f9c56648a4e156853747a [file] [log] [blame]
// run-rustfix
#![allow(dead_code)]
fn swap(arr: &mut [u32; 2]) {
std::mem::swap(&mut arr[0], &mut arr[1]);
//~^ ERROR cannot borrow `arr[_]` as mutable more than once at a time
}
fn main() {}