mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
fa9274c99b
When both `std::` and `core::` items are available, only suggest the `std::` ones. We ensure that in `no_std` crates we suggest `core::` items. Ensure that the list of items suggested to be imported are always in the order of local crate items, `std`/`core` items and finally foreign crate items. Tweak wording of import suggestion: if there are multiple items but they are all of the same kind, we use the kind name and not the generic "items". Fix #83564.
35 lines
1.2 KiB
Text
35 lines
1.2 KiB
Text
error[E0412]: cannot find type `PhantomData` in this scope
|
|
--> tests/ui/crashes/ice-6252.rs:9:9
|
|
|
|
|
LL | _n: PhantomData,
|
|
| ^^^^^^^^^^^ not found in this scope
|
|
|
|
|
help: consider importing this struct
|
|
|
|
|
LL + use std::marker::PhantomData;
|
|
|
|
|
|
|
error[E0412]: cannot find type `VAL` in this scope
|
|
--> tests/ui/crashes/ice-6252.rs:11:63
|
|
|
|
|
LL | impl<N, M> TypeVal<usize> for Multiply<N, M> where N: TypeVal<VAL> {}
|
|
| ^^^ not found in this scope
|
|
|
|
|
help: you might be missing a type parameter
|
|
|
|
|
LL | impl<N, M, VAL> TypeVal<usize> for Multiply<N, M> where N: TypeVal<VAL> {}
|
|
| +++++
|
|
|
|
error[E0046]: not all trait items implemented, missing: `VAL`
|
|
--> tests/ui/crashes/ice-6252.rs:11:1
|
|
|
|
|
LL | const VAL: T;
|
|
| ------------ `VAL` from trait
|
|
...
|
|
LL | impl<N, M> TypeVal<usize> for Multiply<N, M> where N: TypeVal<VAL> {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `VAL` in implementation
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
Some errors have detailed explanations: E0046, E0412.
|
|
For more information about an error, try `rustc --explain E0046`.
|