Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
vec-push.rs
blob: d4190d4138613fabbf779f9936158ef1ac275ed1 [
file
] [
log
] [
blame
]
fn
main
()
{
let
mut
v
=
~[
1
,
2
,
3
];
v
.
push
(
1
);
}