Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
suggest-slice-swap.rs
blob: 478f8c69edd193ee4cb3d715eeca0eebf43fc426 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}