-   Notifications  
You must be signed in to change notification settings  - Fork 13.9k
 
Closed
Labels
A-suggestion-diagnosticsArea: Suggestions generated by the compiler applied by `cargo fix`Area: Suggestions generated by the compiler applied by `cargo fix`
Description
The following suggests removing the extern crate which results in broken code.
#![warn(unused_extern_crates)] extern crate time as time_crate; pub mod m { pub use time_crate::Duration; }The following is also very similar:
#![warn(unused_extern_crates)] extern crate time as time_crate; pub mod m { use time_crate::Duration; pub fn f() { Duration::days(1); } }Metadata
Metadata
Assignees
Labels
A-suggestion-diagnosticsArea: Suggestions generated by the compiler applied by `cargo fix`Area: Suggestions generated by the compiler applied by `cargo fix`