mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
5 lines
109 B
Rust
5 lines
109 B
Rust
// run-pass
|
|
// Testcase for issue #130, operator associativity.
|
|
|
|
pub fn main() { assert_eq!(3 * 5 / 2, 7); }
|