summary refs log tree commit diff
path: root/src/test/run-pass/operator-associativity.rs
blob: 69e3f699e9c6d7118a68dee606570b7eb7022f29 (plain)
1
2
3
// Testcase for issue #130, operator associativity.

pub fn main() { assert_eq!(3 * 5 / 2, 7); }