1
Fork 0

Update tests

This commit is contained in:
r0cky 2024-02-07 10:42:01 +08:00
parent 40878ca6ea
commit c7519d42c2
276 changed files with 1049 additions and 234 deletions

View file

@ -5,7 +5,7 @@
use std::mem;
trait Convert<Target> {
fn convert(&self) -> Target;
fn convert(&self) -> Target; //~ WARN method `convert` is never used
}
impl Convert<u32> for i16 {