aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/operator-associativity.rs
blob: 403d7c2ed2caf0185aae921a8bbc63f03d05c16f (plain) (blame)
1
2
3
4
// Testcase for issue #130, operator associativity.
fn main() -> () {
  assert ((3 * 5 / 2) == 7);
}