Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
operator-associativity.rs
blob: 4f40c80bc4c74f72055f093129253fa356991d1e [
file
] [
log
] [
blame
]
// run-pass
// Testcase for issue #130, operator associativity.
pub
fn
main
()
{
assert_eq
!(
3
*
5
/
2
,
7
);
}