|
1 | 1 | error: replacing an `Option` with `None`
|
2 |
| - --> $DIR/mem_replace.rs:33:13 |
| 2 | + --> $DIR/mem_replace.rs:34: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:35:13 |
| 10 | + --> $DIR/mem_replace.rs:36: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:40:13 |
| 16 | + --> $DIR/mem_replace.rs:41: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:42:13 |
| 24 | + --> $DIR/mem_replace.rs:43: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:43:13 |
| 30 | + --> $DIR/mem_replace.rs:44:13 |
31 | 31 | |
|
32 | 32 | LL | let _ = std::mem::replace(s, Default::default());
|
33 | 33 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::mem::take(s)`
|
34 | 34 |
|
35 |
| -error: aborting due to 5 previous errors |
| 35 | +error: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take` |
| 36 | + --> $DIR/mem_replace.rs:28:9 |
| 37 | + | |
| 38 | +LL | std::mem::replace($s, Default::default()) |
| 39 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::mem::take(s)` |
| 40 | +... |
| 41 | +LL | take!(s); |
| 42 | + | --------- in this macro invocation |
| 43 | + |
| 44 | +error: aborting due to 6 previous errors |
36 | 45 |
|
0 commit comments