mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-02 15:56:09 +03:00
5b07b9ed61
Prelude imports are exempt from wildcard import warnings. Until now only imports of the form ``` use ...::prelude::*; ``` were considered. This change makes it so that the segment `prelude` can show up anywhere, for instance: ``` use ...::prelude::v1::*; ``` Fixes #5917