mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 12:36:35 +03:00
c013bcca0b
resolve: do not suggest `_` for unresolved imports Fix invalid unresolved-import suggestion when a module contains an item named `_`. `use _` is never valid syntax, so `_` should not be suggested as a similar name. Closes rust-lang/rust#152812