rust-clippy/tests/ui/auxiliary/wildcard_imports_helper.rs
Charalampos Mitrodimas 288312463e [wildcard_imports] Modules that contain prelude are also allowed
This commit fixes #10846 by checking if the path segment contains the
word "prelude".

Signed-off-by: Charalampos Mitrodimas <charmitro@gmail.com>
2023-05-30 21:29:04 +03:00

33 lines
560 B
Rust

pub use crate::extern_exports::*;
pub fn extern_foo() {}
pub fn extern_bar() {}
pub struct ExternA;
pub mod inner {
pub mod inner_for_self_import {
pub fn inner_extern_foo() {}
pub fn inner_extern_bar() {}
}
}
mod extern_exports {
pub fn extern_exported() {}
pub struct ExternExportedStruct;
pub enum ExternExportedEnum {
A,
}
}
pub mod prelude {
pub mod v1 {
pub struct PreludeModAnywhere;
}
}
pub mod extern_prelude {
pub mod v1 {
pub struct ExternPreludeModAnywhere;
}
}