Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
parser
/
operator-associativity.rs
blob: e6082d22cc376e0eafb414e25c1f725d7e95cb34 [
file
] [
log
] [
blame
]
//@ run-pass
// Testcase for issue #130, operator associativity.
pub
fn
main
()
{
assert_eq
!(
3
*
5
/
2
,
7
);
}