From bd65f178e0a91ced4bb80f8ea807479e3cfb8465 Mon Sep 17 00:00:00 2001 From: Sour1emon Date: Sat, 7 Sep 2024 10:34:50 -0700 Subject: [PATCH] Updated test comment --- tests/ui/manual_ilog2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ui/manual_ilog2.rs b/tests/ui/manual_ilog2.rs index 0bf926b9d5b7..c72b1ba66f0b 100644 --- a/tests/ui/manual_ilog2.rs +++ b/tests/ui/manual_ilog2.rs @@ -8,5 +8,5 @@ fn main() { let b: u64 = 543534; let _ = 63 - b.leading_zeros(); - let _ = 64 - b.leading_zeros(); // No lint + let _ = 64 - b.leading_zeros(); // No lint because manual ilog2 is BIT_WIDTH - 1 - x.leading_zeros() }