mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
c2c73189c8
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
11 lines
330 B
Text
11 lines
330 B
Text
error: usage of wildcard import
|
|
--> $DIR/wildcard_imports.rs:6:5
|
|
|
|
|
LL | use prelude::*;
|
|
| ^^^^^^^^^^ help: try: `prelude::FOO`
|
|
|
|
|
= note: `-D clippy::wildcard-imports` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::wildcard_imports)]`
|
|
|
|
error: aborting due to 1 previous error
|
|
|