We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
detect all locations where drop is called implicitly and suggest turning it into an explicit drop.
drop
possibly has a setting to only warn about locations where a needs_drop value is dropped.
needs_drop
would be handy as a learning and debugging tool, allowing you to essentially desugar your code.
non-trivial implementation for a lint that will never be used in production code.
fn main() { let s = "Hello, World".to_string(); println!("{s}"); }
Could be written as:
fn main() { let s = "Hello, World".to_string(); println!("{s}"); drop(s); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What it does
detect all locations where
drop
is called implicitly and suggest turning it into an explicit drop.possibly has a setting to only warn about locations where a
needs_drop
value is dropped.Advantage
would be handy as a learning and debugging tool, allowing you to essentially desugar your code.
Drawbacks
non-trivial implementation for a lint that will never be used in production code.
Example
Could be written as:
The text was updated successfully, but these errors were encountered: