mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 09:44:00 +00:00
5 lines
110 B
Rust
5 lines
110 B
Rust
//@ run-pass
|
|
// Testcase for issue #130, operator associativity.
|
|
|
|
pub fn main() { assert_eq!(3 * 5 / 2, 7); }
|