about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTethys Svensson <freaken@freaken.dk>2023-12-22 11:23:12 +0100
committerTethys Svensson <freaken@freaken.dk>2023-12-23 17:00:14 +0100
commit1576ecce409062fcce415fc873e9a16bc8130122 (patch)
tree62e88270db254dd78a5a8ff246c5c830e08cecbd
parentdc975266a95ed723e51d4ee088e5726cfb2898be (diff)
downloadrust-1576ecce409062fcce415fc873e9a16bc8130122.tar.gz
rust-1576ecce409062fcce415fc873e9a16bc8130122.zip
Move uninhabited_references to nursery
-rw-r--r--clippy_lints/src/uninhabited_references.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/uninhabited_references.rs b/clippy_lints/src/uninhabited_references.rs
index d41576cadad..903593ecfd7 100644
--- a/clippy_lints/src/uninhabited_references.rs
+++ b/clippy_lints/src/uninhabited_references.rs
@@ -32,7 +32,7 @@ declare_clippy_lint! {
     /// ```
     #[clippy::version = "1.76.0"]
     pub UNINHABITED_REFERENCES,
-    suspicious,
+    nursery,
     "reference to uninhabited type"
 }