mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-01-02 00:09:08 +00:00
18 lines
586 B
Rust
18 lines
586 B
Rust
use clippy_utils::diagnostics::span_lint;
|
|
use if_chain::if_chain;
|
|
use rustc_hir as hir;
|
|
use rustc_lint::LateContext;
|
|
use rustc_middle::ty;
|
|
|
|
use super::ZST_OFFSET;
|
|
|
|
pub(super) fn check(cx: &LateContext<'_>, expr: &hir::Expr<'_>, recv: &hir::Expr<'_>) {
|
|
if_chain! {
|
|
if let ty::RawPtr(ty::TypeAndMut { ty, .. }) = cx.typeck_results().expr_ty(recv).kind();
|
|
if let Ok(layout) = cx.tcx.layout_of(cx.param_env.and(ty));
|
|
if layout.is_zst();
|
|
then {
|
|
span_lint(cx, ZST_OFFSET, expr.span, "offset calculation on zero-sized value");
|
|
}
|
|
}
|
|
}
|