mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-28 07:30:57 +00:00
11 lines
328 B
Text
11 lines
328 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 previous error
|
|
|