]> git.lizzy.rs Git - rust.git/blob - tests/ui/shadow.rs
Merge pull request #3269 from rust-lang-nursery/relicense
[rust.git] / tests / ui / shadow.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::all, clippy::pedantic, clippy::shadow_same, clippy::shadow_reuse, clippy::shadow_unrelated)]
15 #![allow(unused_parens, unused_variables, clippy::missing_docs_in_private_items)]
16
17 fn id<T>(x: T) -> T { x }
18
19 fn first(x: (isize, isize)) -> isize { x.0 }
20
21 fn main() {
22     let mut x = 1;
23     let x = &mut x;
24     let x = { x };
25     let x = (&*x);
26     let x = { *x + 1 };
27     let x = id(x);
28     let x = (1, x);
29     let x = first(x);
30     let y = 1;
31     let x = y;
32
33     let x;
34     x = 42;
35
36     let o = Some(1_u8);
37
38     if let Some(p) = o { assert_eq!(1, p); }
39     match o {
40         Some(p) => p, // no error, because the p above is in its own scope
41         None => 0,
42     };
43
44     match (x, o) {
45         (1, Some(a)) | (a, Some(1)) => (), // no error though `a` appears twice
46         _ => (),
47     }
48 }