1use core::ops::{Mul, MulAssign}; 2 3use crate::bint::{impls::ops::mul::mul_impl, Int}; 4 5mul_impl!(Int, I);