mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-16 01:38:09 +00:00
13 lines
437 B
Text
13 lines
437 B
Text
error: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`
|
|
--> $DIR/mem_replace_macro.rs:9:9
|
|
|
|
|
LL | std::mem::replace($s, Default::default())
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
...
|
|
LL | take!(s);
|
|
| --------- in this macro invocation
|
|
|
|
|
= note: `-D clippy::mem-replace-with-default` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|