This website requires JavaScript.
Explore
Sign In
mirror
/
rust
mirror of
https://github.com/rust-lang/rust
Watch
1
Star
0
Fork
You've already forked rust
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
master
rust
/
tests
/
ui
/
moves
/
move-arg.rs
6 lines
99 B
Rust
Raw
Permalink
Blame
History
//@ run-pass
fn
test
(
foo
:
isize
)
{
assert_eq!
(
foo
,
10
)
;
}
pub
fn
main
(
)
{
let
x
=
10
;
test
(
x
)
;
}
Reference in New Issue
View Git Blame
Copy Permalink