As of https://github.com/rust-lang/rust/pull/51015, the rustfix result for: ```rust #![warn(unused_crates)] extern crate foo; fn main() { } ``` is ```rust #![warn(unused_crates)] fn main() { } ``` but not ```rust #![warn(unused_crates)] fn main() { } ``` <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"heiseish"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->
As of #51015, the rustfix result for:
is
but not