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
Hi. In my crate relm, I have an example that shows warnings about unused imports:
warning: unused imports: `ButtonExt`, `LabelExt`, `OrientableExt`, `WidgetExt` --> src/main.rs:29:5 | 29 | ButtonExt, | ^^^^^^^^^ 30 | Inhibit, 31 | LabelExt, | ^^^^^^^^ 32 | OrientableExt, | ^^^^^^^^^^^^^ 33 | WidgetExt, | ^^^^^^^^^ | = note: #[warn(unused_imports)] on by default
But if I comment them, I get compile errors because these import are actually needed. Thanks to fix the issue.
The text was updated successfully, but these errors were encountered:
Looks like #45268. My guess is that one of those macros used by the example generates a mod and uses use super::* inside of it?
mod
use super::*
Sorry, something went wrong.
Yes, it does use super::*.
Okay, for the purposes of keeping things tidy I think this issue should be closed in favor of the other
You're right. Closed in favor of #45268.
No branches or pull requests
Hi.
In my crate relm, I have an example that shows warnings about unused imports:
But if I comment them, I get compile errors because these import are actually needed.
Thanks to fix the issue.
The text was updated successfully, but these errors were encountered: