Update var name in test

This commit is contained in:
Joe Ranweiler 2021-06-22 19:02:34 -07:00
parent 10122e4a48
commit 642239c857
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ fn main() {
c.sub(0);
c.wrapping_sub(0);
let y = &1 as *const i32;
y.offset(0);
let sized = &1 as *const i32;
sized.offset(0);
}
}