]> git.lizzy.rs Git - rust.git/blob - tests/ui/mem_replace.rs
Auto merge of #4809 - iankronquist:patch-1, r=flip1995
[rust.git] / tests / ui / mem_replace.rs
1 // Copyright 2014-2019 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10 // run-rustfix
11 #![allow(unused_imports)]
12 #![warn(
13     clippy::all,
14     clippy::style,
15     clippy::mem_replace_option_with_none,
16     clippy::mem_replace_with_default
17 )]
18
19 use std::mem;
20
21 fn replace_option_with_none() {
22     let mut an_option = Some(1);
23     let _ = mem::replace(&mut an_option, None);
24     let an_option = &mut Some(1);
25     let _ = mem::replace(an_option, None);
26 }
27
28 fn replace_with_default() {
29     let mut s = String::from("foo");
30     let _ = std::mem::replace(&mut s, String::default());
31     let s = &mut String::from("foo");
32     let _ = std::mem::replace(s, String::default());
33     let _ = std::mem::replace(s, Default::default());
34 }
35
36 fn main() {
37     replace_option_with_none();
38     replace_with_default();
39 }