Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
moves
/
move-arg.rs
blob: 5942cd89fd9eb05b32fe61997a5d45a5f935b401 [
file
] [
log
] [
blame
]
// run-pass
fn
test
(
foo
:
isize
)
{
assert_eq
!(
foo
,
10
);
}
pub
fn
main
()
{
let
x
=
10
;
test
(
x
);
}