mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-19 01:24:05 +00:00
12 lines
328 B
Text
12 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
|
||
|
|