]> git.lizzy.rs Git - rust.git/blob - tests/ui/temporary_assignment.rs
Merge pull request #3269 from rust-lang-nursery/relicense
[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
11 #![feature(tool_lints)]
12
13
14 #![warn(clippy::temporary_assignment)]
15
16 use std::ops::{Deref, DerefMut};
17
18 struct Struct {
19     field: i32
20 }
21
22 struct Wrapper<'a> {
23     inner: &'a mut Struct
24 }
25
26 impl<'a> Deref for Wrapper<'a> {
27     type Target = Struct;
28     fn deref(&self) -> &Struct { self.inner }
29 }
30
31 impl<'a> DerefMut for Wrapper<'a> {
32     fn deref_mut(&mut self) -> &mut Struct { self.inner }
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 }