Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
compile-fail
/
mutable-huh-variance-box.rs
blob: 637f9226957c0176377e56cbe1a183654c765acc [
file
]
// error-pattern: mismatched types
fn
main
()
{
let
v
=
@mut
~[
0
];
fn
f
(&&
v
:
@mut
~[
const
int
])
{
*
v
=
~[
mut
3
]
}
f
(
v
);
}