Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
issues
/
issue-36400.rs
blob: a405f9b1135252b6cdd6b87e42ffce0d6363187d [
file
] [
log
] [
blame
]
fn
f
(
x
:
&
mut
u32
)
{}
fn
main
()
{
let
x
=
Box
::
new
(
3
);
f
(&
mut
*
x
);
//~ ERROR cannot borrow `*x` as mutable, as `x` is not declared as mutable
}