|
1 | 1 | error: replacing an `Option` with `None`
|
2 |
| - --> $DIR/mem_replace.rs:23:13 |
| 2 | + --> $DIR/mem_replace.rs:14:13 |
3 | 3 | |
|
4 | 4 | LL | let _ = mem::replace(&mut an_option, None);
|
5 | 5 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider `Option::take()` instead: `an_option.take()`
|
6 | 6 | |
|
7 | 7 | = note: `-D clippy::mem-replace-option-with-none` implied by `-D warnings`
|
8 | 8 |
|
9 | 9 | error: replacing an `Option` with `None`
|
10 |
| - --> $DIR/mem_replace.rs:25:13 |
| 10 | + --> $DIR/mem_replace.rs:16:13 |
11 | 11 | |
|
12 | 12 | LL | let _ = mem::replace(an_option, None);
|
13 | 13 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider `Option::take()` instead: `an_option.take()`
|
14 | 14 |
|
15 | 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 |
| 16 | + --> $DIR/mem_replace.rs:21:13 |
17 | 17 | |
|
18 | 18 | LL | let _ = std::mem::replace(&mut s, String::default());
|
19 | 19 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::mem::take(&mut s)`
|
20 | 20 | |
|
21 | 21 | = note: `-D clippy::mem-replace-with-default` implied by `-D warnings`
|
22 | 22 |
|
23 | 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 |
| 24 | + --> $DIR/mem_replace.rs:23:13 |
25 | 25 | |
|
26 | 26 | LL | let _ = std::mem::replace(s, String::default());
|
27 | 27 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::mem::take(s)`
|
28 | 28 |
|
29 | 29 | error: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`
|
30 |
| - --> $DIR/mem_replace.rs:33:13 |
| 30 | + --> $DIR/mem_replace.rs:24:13 |
31 | 31 | |
|
32 | 32 | LL | let _ = std::mem::replace(s, Default::default());
|
33 | 33 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::mem::take(s)`
|
|
0 commit comments