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