about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex ✨ Cosmic Princess ✨ <blyxyas@gmail.com>2022-10-27 21:32:36 +0200
committerGitHub <noreply@github.com>2022-10-27 21:32:36 +0200
commit151395d74e703600a724ecfc219c3f0fb1fe384a (patch)
tree5dbf9873af50b4e3d7a138eb6ba45e55f2dbe8ad
parent64308d6292de5373a892532bac48862cec4b2677 (diff)
downloadrust-151395d74e703600a724ecfc219c3f0fb1fe384a.tar.gz
rust-151395d74e703600a724ecfc219c3f0fb1fe384a.zip
Update clippy_lints/src/suspicious_xor_used_as_pow.rs
Co-authored-by: NAKATA Takayuki <f.seasons017@gmail.com>
-rw-r--r--clippy_lints/src/suspicious_xor_used_as_pow.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/suspicious_xor_used_as_pow.rs b/clippy_lints/src/suspicious_xor_used_as_pow.rs
index b4168d69abc..301aa5798bf 100644
--- a/clippy_lints/src/suspicious_xor_used_as_pow.rs
+++ b/clippy_lints/src/suspicious_xor_used_as_pow.rs
@@ -18,7 +18,7 @@ declare_clippy_lint! {
     /// ```rust
     /// let x = 3_i32.pow(4);
     /// ```
-    #[clippy::version = "1.65.0"]
+    #[clippy::version = "1.66.0"]
     pub SUSPICIOUS_XOR_USED_AS_POW,
     restriction,
     "XOR (`^`) operator possibly used as exponentiation operator"