rust/src/test/run-pass/operator-associativity.rs
Graydon Hoare d08b443fff Revert "Use different syntax for checks that matter to typestate"
This reverts commit aa25f22f19. It broke stage2, not sure why yet.
2011-05-02 17:35:33 -07:00

5 lines
100 B
Rust

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