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