index
:
rust
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
test
/
run-pass
/
arith-0.rs
blob: 857eaa8e42a7dbbf6467fdc547cd518a77567a44 (
plain
) (
blame
)
1
2
3
4
5
fn
main
()
->
()
{
let
int
a
=
10
;
log
a
;
assert
(
a
*
(
a
-
1
)
==
90
);
}