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