rust-clippy/tests/ui/mem_replace.stderr

17 lines
603 B
Text
Raw Normal View History

error: replacing an `Option` with `None`
2019-01-13 12:55:26 +00:00
--> $DIR/mem_replace.rs:18:13
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | let _ = mem::replace(&mut an_option, None);
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider `Option::take()` instead: `an_option.take()`
|
= note: `-D clippy::mem-replace-option-with-none` implied by `-D warnings`
2018-09-18 23:54:01 +00:00
error: replacing an `Option` with `None`
2019-01-13 12:55:26 +00:00
--> $DIR/mem_replace.rs:20:13
2018-09-18 23:54:01 +00:00
|
2018-12-27 15:57:55 +00:00
LL | let _ = mem::replace(an_option, None);
2018-09-18 23:54:01 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider `Option::take()` instead: `an_option.take()`
error: aborting due to 2 previous errors