Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
operator-associativity.rs
blob: e6082d22cc376e0eafb414e25c1f725d7e95cb34 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
// Testcase for issue #130, operator associativity.
pub
fn
main
()
{
assert_eq
!(
3
*
5
/
2
,
7
);
}