about summary refs log tree commit diff
path: root/clippy_lints/src/unneeded_struct_pattern.rs
diff options
context:
space:
mode:
authoralexey semenyuk <alexsemenyuk88@gmail.com>2025-01-19 15:26:42 +0500
committerAlexey Semenyuk <alexsemenyuk88@gmail.com>2025-01-19 19:31:21 +0500
commit5bd989a46f8f2806ad7efd45fabe4f09f5bee025 (patch)
treeabd48c4f08a3cae476491e83aa02d8c0332c323f /clippy_lints/src/unneeded_struct_pattern.rs
parent2220806d691b09d309062d339f065f58b70cf369 (diff)
downloadrust-5bd989a46f8f2806ad7efd45fabe4f09f5bee025.tar.gz
rust-5bd989a46f8f2806ad7efd45fabe4f09f5bee025.zip
Update version for unneeded_struct_pattern
Diffstat (limited to 'clippy_lints/src/unneeded_struct_pattern.rs')
-rw-r--r--clippy_lints/src/unneeded_struct_pattern.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/unneeded_struct_pattern.rs b/clippy_lints/src/unneeded_struct_pattern.rs
index 40ba70d451d..a74eab8b6ae 100644
--- a/clippy_lints/src/unneeded_struct_pattern.rs
+++ b/clippy_lints/src/unneeded_struct_pattern.rs
@@ -32,7 +32,7 @@ declare_clippy_lint! {
     ///     None => 0,
     /// };
     /// ```
-    #[clippy::version = "1.83.0"]
+    #[clippy::version = "1.86.0"]
     pub UNNEEDED_STRUCT_PATTERN,
     style,
     "using struct pattern to match against unit variant"