Auto merge of #11727 - dswij:read-zero-byte-vec-nursery, r=Centri3

move `read_zero_byte_vec` to nursery

I think the concerns in #9274 are valid, and we should move this to nursery while we're reworking this.

changelog: [`read_zero_byte_vec`] moved to nursery
This commit is contained in:
bors 2023-10-29 22:09:07 +00:00
commit 739f9e2503

View file

@ -42,7 +42,7 @@ declare_clippy_lint! {
/// ```
#[clippy::version = "1.63.0"]
pub READ_ZERO_BYTE_VEC,
correctness,
nursery,
"checks for reads into a zero-length `Vec`"
}
declare_lint_pass!(ReadZeroByteVec => [READ_ZERO_BYTE_VEC]);