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
443f79922d
rust
/
src
/
test
/
run-pass
/
unique-fn-arg-mut.rs
9 lines
101 B
Rust
Raw
Normal View
History
Unescape
Escape
Add a test for mutable references to unique boxes as function arguments Issue #409
2011-09-22 17:03:44 -05:00
fn
f
(
&
i
:
~
int
)
{
i
=
~
200
;
}
fn
main
(
)
{
make --enforce-mut-vars always on, add mut annotations to remaining files
2012-03-22 10:39:41 -05:00
let
mut
i
=
~
100
;
Add a test for mutable references to unique boxes as function arguments Issue #409
2011-09-22 17:03:44 -05:00
f
(
i
)
;
assert
*
i
=
=
200
;
}
Reference in New Issue
Copy Permalink