22 lines
544 B
Plaintext
22 lines
544 B
Plaintext
|
error: don't use glob imports for enum variants
|
||
|
--> examples/enum_glob_use.rs:6:1
|
||
|
|
|
||
|
6 | use std::cmp::Ordering::*;
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D enum-glob-use` implied by `-D warnings`
|
||
|
|
||
|
error: don't use glob imports for enum variants
|
||
|
--> examples/enum_glob_use.rs:12:1
|
||
|
|
|
||
|
12 | use self::Enum::*;
|
||
|
| ^^^^^^^^^^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D enum-glob-use` implied by `-D warnings`
|
||
|
|
||
|
error: aborting due to 2 previous errors
|
||
|
|
||
|
error: Could not compile `clippy_tests`.
|
||
|
|
||
|
To learn more, run the command again with --verbose.
|