rustc/tests/ui/parser/operator-associativity.rs
2023-08-02 10:33:26 +02:00

5 lines
109 B
Rust

// run-pass
// Testcase for issue #130, operator associativity.
pub fn main() { assert_eq!(3 * 5 / 2, 7); }