2022-01-13 12:18:19 +00:00
|
|
|
#[allow(clippy::borrow_as_ptr)]
|
2019-11-14 19:18:24 +00:00
|
|
|
fn main() {
|
|
|
|
unsafe {
|
2021-07-01 16:17:38 +00:00
|
|
|
let m = &mut () as *mut ();
|
|
|
|
m.offset(0);
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: offset calculation on zero-sized value
|
|
|
|
//~| NOTE: `#[deny(clippy::zst_offset)]` on by default
|
2021-07-01 16:17:38 +00:00
|
|
|
m.wrapping_add(0);
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: offset calculation on zero-sized value
|
2021-07-01 16:17:38 +00:00
|
|
|
m.sub(0);
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: offset calculation on zero-sized value
|
2021-07-01 16:17:38 +00:00
|
|
|
m.wrapping_sub(0);
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: offset calculation on zero-sized value
|
2019-11-14 19:18:24 +00:00
|
|
|
|
2021-07-01 16:17:38 +00:00
|
|
|
let c = &() as *const ();
|
|
|
|
c.offset(0);
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: offset calculation on zero-sized value
|
2021-07-01 16:17:38 +00:00
|
|
|
c.wrapping_add(0);
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: offset calculation on zero-sized value
|
2021-07-01 16:17:38 +00:00
|
|
|
c.sub(0);
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: offset calculation on zero-sized value
|
2021-07-01 16:17:38 +00:00
|
|
|
c.wrapping_sub(0);
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: offset calculation on zero-sized value
|
2021-07-01 16:17:38 +00:00
|
|
|
|
|
|
|
let sized = &1 as *const i32;
|
|
|
|
sized.offset(0);
|
2019-11-14 19:18:24 +00:00
|
|
|
}
|
|
|
|
}
|