]> git.lizzy.rs Git - rust.git/blob - tests/ui/temporary_assignment.rs
Merge branch 'master' into rustfmt_tests
[rust.git] / tests / ui / temporary_assignment.rs
1 // Copyright 2014-2018 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 #![warn(clippy::temporary_assignment)]
11
12 use std::ops::{Deref, DerefMut};
13
14 struct Struct {
15     field: i32,
16 }
17
18 struct Wrapper<'a> {
19     inner: &'a mut Struct,
20 }
21
22 impl<'a> Deref for Wrapper<'a> {
23     type Target = Struct;
24     fn deref(&self) -> &Struct {
25         self.inner
26     }
27 }
28
29 impl<'a> DerefMut for Wrapper<'a> {
30     fn deref_mut(&mut self) -> &mut Struct {
31         self.inner
32     }
33 }
34
35 fn main() {
36     let mut s = Struct { field: 0 };
37     let mut t = (0, 0);
38
39     Struct { field: 0 }.field = 1;
40     (0, 0).0 = 1;
41
42     // no error
43     s.field = 1;
44     t.0 = 1;
45     Wrapper { inner: &mut s }.field = 1;
46 }