Use mini_core in the tests
This commit is contained in:
parent
b4418b896c
commit
06fdf3df2c
12 changed files with 26 additions and 1165 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue