summaryrefslogtreecommitdiffstats
path: root/library/std/src/sys_common/tests.rs
blob: 1b6446db52d4ba695b57b0defeb0c0a4a7f631d4 (plain)
1
2
3
4
5
6
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);
}