mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
11 lines
166 B
Rust
11 lines
166 B
Rust
#![warn(clippy::wildcard_imports)]
|
|
|
|
mod prelude {
|
|
pub const FOO: u8 = 1;
|
|
}
|
|
use prelude::FOO;
|
|
//~^ ERROR: usage of wildcard import
|
|
|
|
fn main() {
|
|
let _ = FOO;
|
|
}
|