Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
unique-mutable.rs
blob: fd991c20503d4cf42671e3f93fc8124895c0b318 [
file
] [
log
] [
blame
]
fn
main
()
{
let
i
=
~
mut
0
;
*
i
=
1
;
assert
*
i
==
1
;
}