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
Found when implementing #44240: turns out panic!() in a module marks std::u32 imports as used, even if they aren't actually needed. Simple testcase:
panic!()
std::u32
// This should always warn: use std::u32; // If only the builtin type is used: fn main() { let _: u32; }
cc @petrochenkov
The text was updated successfully, but these errors were encountered:
Duplicate of #40774
Sorry, something went wrong.
Closing as a duplicate.
No branches or pull requests
Found when implementing #44240: turns out
panic!()
in a module marksstd::u32
imports as used, even if they aren't actually needed.Simple testcase:
cc @petrochenkov
The text was updated successfully, but these errors were encountered: