rust/tests/ui/from_over_into.stderr

12 lines
415 B
Plaintext
Raw Normal View History

error: an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true
--> $DIR/from_over_into.rs:6:1
|
LL | impl Into<StringWrapper> for String {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider to implement `From<std::string::String>` instead
2022-09-22 20:04:22 +04:00
= note: `-D clippy::from-over-into` implied by `-D warnings`
error: aborting due to previous error