]> git.lizzy.rs Git - rust.git/blob - tests/ui/mem_replace.stderr
Use `mem::take` instead of `mem::replace` when applicable
[rust.git] / tests / ui / mem_replace.stderr
1 error: replacing an `Option` with `None`
2   --> $DIR/mem_replace.rs:23:13
3    |
4 LL |     let _ = mem::replace(&mut an_option, None);
5    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider `Option::take()` instead: `an_option.take()`
6    |
7    = note: `-D clippy::mem-replace-option-with-none` implied by `-D warnings`
8
9 error: replacing an `Option` with `None`
10   --> $DIR/mem_replace.rs:25:13
11    |
12 LL |     let _ = mem::replace(an_option, None);
13    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider `Option::take()` instead: `an_option.take()`
14
15 error: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`
16   --> $DIR/mem_replace.rs:30:13
17    |
18 LL |     let _ = std::mem::replace(&mut s, String::default());
19    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::mem::take(&mut s)`
20    |
21    = note: `-D clippy::mem-replace-with-default` implied by `-D warnings`
22
23 error: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`
24   --> $DIR/mem_replace.rs:32:13
25    |
26 LL |     let _ = std::mem::replace(s, String::default());
27    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::mem::take(s)`
28
29 error: aborting due to 4 previous errors
30