Sign in
fuchsia
/
third_party
/
rust
/
290df4fa5613d3d6cce717509219b18870e3ff86
/
.
/
tests
/
ui
/
moves
/
move-arg.rs
blob: 3a7cbb4c0f6df2da457c0946afe483a950a73e2d [
file
] [
log
] [
blame
]
//@ run-pass
fn
test
(
foo
:
isize
)
{
assert_eq
!(
foo
,
10
);
}
pub
fn
main
()
{
let
x
=
10
;
test
(
x
);
}