-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
False positives of local variables crossing await scopes. #137721
Comments
I had to modify the code of foo() as follows for it to compile successfully: async fn foo() {
let idx = {
let mut rng = rand::rng();
rng.random_range(0..100)
};
bar(idx).await;
} |
oh, Let me add something here, the 'rng' is Copy, so drop is useless. |
Duplicate of #63768 |
Is that accurate, https://docs.rs/rand/latest/rand/fn.rng.html returns https://docs.rs/rand/latest/rand/rngs/struct.ThreadRng.html which is not |
sorry, I got the wrong version. My example is based on version 0.9.0, and this |
going to close this as a duplicate as suggested by @theemathas which seems correct to me, but correct me if I'm wrong. |
Hello, I have a piece of code that fails to compile, but I believe it is a false positive.
i got an error:
the 'rng' is expliciyly dropped, and it never cross the await.
The text was updated successfully, but these errors were encountered: