Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
parser
/
operator-associativity.rs
blob: 4f40c80bc4c74f72055f093129253fa356991d1e [
file
]
// run-pass
// Testcase for issue #130, operator associativity.
pub
fn
main
()
{
assert_eq
!(
3
*
5
/
2
,
7
);
}