Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
parser
/
operator-associativity.rs
blob: e6082d22cc376e0eafb414e25c1f725d7e95cb34 [
file
]
//@ run-pass
// Testcase for issue #130, operator associativity.
pub
fn
main
()
{
assert_eq
!(
3
*
5
/
2
,
7
);
}