Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
unique-fn-arg.rs
blob: c4a591c3e79b8db563b9f2c370648b966d68dd7a [
file
]
fn
f
(
i
:
~
int
)
{
assert
*
i
==
100
;
}
fn
main
()
{
f
(~
100
);
let
i
=
~
100
;
f
(
i
);
}