This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
12c32e944d
rust
/
src
/
test
/
run-pass
/
move-arg.rs
4 lines
84 B
Rust
Raw
Normal View
History
Unescape
Escape
Pretty-print for new arg-mode syntax
2011-09-12 05:39:38 -05:00
fn
test
(
-
foo
:
int
)
{
assert
(
foo
=
=
10
)
;
}
Add new arg-passing mode 'move' denoted with '-T'. Translate as pass-by-value, doesn't deinit source yet nor get proper analysis in typestate, alias passes.
2011-08-08 17:53:31 -05:00
Make moves explicit in rpass tests
2012-09-19 00:45:24 -05:00
fn
main
(
)
{
let
x
=
10
;
test
(
move
x
)
;
}
Reference in New Issue
Copy Permalink