Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
library
/
std
/
src
/
sys_common
/
tests.rs
blob: 1b6446db52d4ba695b57b0defeb0c0a4a7f631d4 [
file
] [
log
] [
blame
]
use
super
::
mul_div_u64
;
#[
test
]
fn
test_muldiv
()
{
assert_eq
!(
mul_div_u64
(
1_000_000_000_001
,
1_000_000_000
,
1_000_000
),
1_000_000_000_001_000
);
}