1
Fork 0

Fix more tests

This commit is contained in:
Deadbeef 2021-08-25 15:21:55 +00:00
parent ff24ac4f2b
commit 703c557aaa
No known key found for this signature in database
GPG key ID: 027DF9338862ADDD
20 changed files with 103 additions and 50 deletions

View file

@ -6,7 +6,7 @@ trait MyPartialEq {
fn eq(&self, other: &Self) -> bool;
}
impl<T: PartialEq> const MyPartialEq for T {
impl<T: ~const PartialEq> const MyPartialEq for T {
fn eq(&self, other: &Self) -> bool {
PartialEq::eq(self, other)
}