-
Notifications
You must be signed in to change notification settings - Fork 1.6k
chore: multipart suggestions for let_unit_value lint #13754
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
blyxyas
merged 1 commit into
rust-lang:master
from
scottgerring:chore/fix-let-unit-test
Dec 23, 2024
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,196 @@ | ||
#![warn(clippy::let_unit_value)] | ||
#![allow(unused, clippy::no_effect, clippy::needless_late_init, path_statements)] | ||
|
||
macro_rules! let_and_return { | ||
($n:expr) => {{ | ||
let ret = $n; | ||
}}; | ||
} | ||
|
||
fn main() { | ||
println!("x"); | ||
let _y = 1; // this is fine | ||
let _z = ((), 1); // this as well | ||
if true { | ||
// do not lint this, since () is explicit | ||
let _a = (); | ||
let () = dummy(); | ||
let () = (); | ||
() = dummy(); | ||
() = (); | ||
let _a: () = (); | ||
let _a: () = dummy(); | ||
} | ||
|
||
consume_units_with_for_loop(); // should be fine as well | ||
|
||
multiline_sugg(); | ||
|
||
let_and_return!(()) // should be fine | ||
} | ||
|
||
fn dummy() {} | ||
|
||
// Related to issue #1964 | ||
fn consume_units_with_for_loop() { | ||
// `for_let_unit` lint should not be triggered by consuming them using for loop. | ||
let v = vec![(), (), ()]; | ||
let mut count = 0; | ||
for _ in v { | ||
count += 1; | ||
} | ||
assert_eq!(count, 3); | ||
|
||
// Same for consuming from some other Iterator<Item = ()>. | ||
let (tx, rx) = ::std::sync::mpsc::channel(); | ||
tx.send(()).unwrap(); | ||
drop(tx); | ||
|
||
count = 0; | ||
for _ in rx.iter() { | ||
count += 1; | ||
} | ||
assert_eq!(count, 1); | ||
} | ||
|
||
fn multiline_sugg() { | ||
let v: Vec<u8> = vec![2]; | ||
|
||
v | ||
.into_iter() | ||
.map(|i| i * 2) | ||
.filter(|i| i % 2 == 0) | ||
.map(|_| ()) | ||
.next() | ||
.unwrap(); | ||
} | ||
|
||
#[derive(Copy, Clone)] | ||
pub struct ContainsUnit(()); // should be fine | ||
|
||
fn _returns_generic() { | ||
fn f<T>() -> T { | ||
unimplemented!() | ||
} | ||
fn f2<T, U>(_: T) -> U { | ||
unimplemented!() | ||
} | ||
fn f3<T>(x: T) -> T { | ||
x | ||
} | ||
fn f5<T: Default>(x: bool) -> Option<T> { | ||
x.then(|| T::default()) | ||
} | ||
|
||
let _: () = f(); | ||
let x: () = f(); | ||
|
||
let _: () = f2(0i32); | ||
let x: () = f2(0i32); | ||
|
||
let _: () = f3(()); | ||
let x: () = f3(()); | ||
|
||
fn f4<T>(mut x: Vec<T>) -> T { | ||
x.pop().unwrap() | ||
} | ||
let _: () = f4(vec![()]); | ||
let x: () = f4(vec![()]); | ||
|
||
let _: () = { | ||
let x = 5; | ||
f2(x) | ||
}; | ||
|
||
let _: () = if true { f() } else { f2(0) }; | ||
let x: () = if true { f() } else { f2(0) }; | ||
|
||
match Some(0) { | ||
None => f2(1), | ||
Some(0) => f(), | ||
Some(1) => f2(3), | ||
Some(_) => (), | ||
}; | ||
|
||
let _: () = f5(true).unwrap(); | ||
|
||
#[allow(clippy::let_unit_value)] | ||
{ | ||
let x = f(); | ||
let y; | ||
let z; | ||
match 0 { | ||
0 => { | ||
y = f(); | ||
z = f(); | ||
}, | ||
1 => { | ||
println!("test"); | ||
y = f(); | ||
z = f3(()); | ||
}, | ||
_ => panic!(), | ||
} | ||
|
||
let x1; | ||
let x2; | ||
if true { | ||
x1 = f(); | ||
x2 = x1; | ||
} else { | ||
x2 = f(); | ||
x1 = x2; | ||
} | ||
|
||
let opt; | ||
match f5(true) { | ||
Some(x) => opt = x, | ||
None => panic!(), | ||
}; | ||
|
||
#[warn(clippy::let_unit_value)] | ||
{ | ||
let _: () = x; | ||
let _: () = y; | ||
let _: () = z; | ||
let _: () = x1; | ||
let _: () = x2; | ||
let _: () = opt; | ||
} | ||
} | ||
|
||
let () = f(); | ||
} | ||
|
||
fn attributes() { | ||
fn f() {} | ||
|
||
#[allow(clippy::let_unit_value)] | ||
let _ = f(); | ||
#[expect(clippy::let_unit_value)] | ||
let _ = f(); | ||
} | ||
|
||
async fn issue10433() { | ||
let _pending: () = std::future::pending().await; | ||
} | ||
|
||
pub async fn issue11502(a: ()) {} | ||
|
||
pub fn issue12594() { | ||
fn returns_unit() {} | ||
|
||
fn returns_result<T>(res: T) -> Result<T, ()> { | ||
Ok(res) | ||
} | ||
|
||
fn actual_test() { | ||
// create first a unit value'd value | ||
returns_unit(); | ||
returns_result(()).unwrap(); | ||
returns_result(()).unwrap(); | ||
// make sure we replace only the first variable | ||
let res = 1; | ||
returns_result(res).unwrap(); | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line is completely removed, is this intended?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And sorry for the late review, I've opened this PR maybe 5 times and never got around to clicking that "Submit review" button
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @blyxyas no worries!
I think it is unnecessary now; this part here collects usages:
rust-clippy/clippy_lints/src/unit_types/let_unit_value.rs
Lines 90 to 92 in ec24388
... and we then emit a lint based on whether or not we had any:
rust-clippy/clippy_lints/src/unit_types/let_unit_value.rs
Lines 99 to 105 in ec24388
It could be added back as a sort of "performance optimization guard" to remove the need to call
walk_body
, assuming thatis_local_used
is quicker, but it doesn't change the behaviour (I also double checked this!)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've been all morning trying to measure this but it's in a very awkward spot to get a hold of how many heavy-lifting that function does.
Being that in the case that the body is visited is already in the linting-case, let's just ignore it.