Use mini_core in the tests

This commit is contained in:
Antoni Boucher 2025-01-13 08:10:40 -05:00
parent b4418b896c
commit 06fdf3df2c
12 changed files with 26 additions and 1165 deletions

View file

@ -170,6 +170,14 @@ impl Add for usize {
}
}
impl Add for isize {
type Output = Self;
fn add(self, rhs: Self) -> Self {
self + rhs
}
}
#[lang = "sub"]
pub trait Sub<RHS = Self> {
type Output;