[resolve] use rename suggestion is not well-formatted #45799
Closed
Description
rust/src/librustc_resolve/lib.rs
Lines 3703 to 3706 in 44990e5
Trying to re-import std
or any other crate, I get a suggestion like this:
14 | extern crate std;
| ^^^^^^^^^^^^^^^^^ `std` reimported here
|
= note: `std` must be defined only once in the type namespace of this module
help: You can use `as` to change the binding name of the import
|
14 | extern crate std; as Otherstd
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The problem is in the formatting of the suggestion, where SEMICOLON (;
) is placed before the as
keyword, like this extern crate std; as Otherstd
instead of extern crate std as Otherstd;
.
The suggestion doesn't exist in stable or beta, so this affects only nightly at the moment.
Original commit: ff83240
Original PR: #45660
/cc @Cldfire