Sign in
rust
/
rust
/
e2893f7c95e45f74c8bc5dbd033486c5bfaa4deb
/
.
/
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
);
}