5 lines
100 B
Rust
5 lines
100 B
Rust
// Testcase for issue #130, operator associativity.
|
|
fn main() -> () {
|
|
check ((3 * 5 / 2) == 7);
|
|
}
|