2015-08-21 10:11:34 -05:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
|
|
|
#![allow(unused_parens, unused_variables)]
|
2015-09-01 10:53:56 -05:00
|
|
|
#![deny(clippy, clippy_pedantic)]
|
2015-08-21 10:11:34 -05:00
|
|
|
|
|
|
|
fn id<T>(x: T) -> T { x }
|
|
|
|
|
|
|
|
fn first(x: (isize, isize)) -> isize { x.0 }
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut x = 1;
|
2016-05-23 09:34:09 -05:00
|
|
|
let x = &mut x; //~ERROR `x` is shadowed by itself in `&mut x`
|
|
|
|
let x = { x }; //~ERROR `x` is shadowed by itself in `{ x }`
|
|
|
|
let x = (&*x); //~ERROR `x` is shadowed by itself in `(&*x)`
|
|
|
|
let x = { *x + 1 }; //~ERROR `x` is shadowed by `{ *x + 1 }` which reuses
|
|
|
|
let x = id(x); //~ERROR `x` is shadowed by `id(x)` which reuses
|
|
|
|
let x = (1, x); //~ERROR `x` is shadowed by `(1, x)` which reuses
|
|
|
|
let x = first(x); //~ERROR `x` is shadowed by `first(x)` which reuses
|
2015-08-21 10:11:34 -05:00
|
|
|
let y = 1;
|
2016-05-23 09:34:09 -05:00
|
|
|
let x = y; //~ERROR `x` is shadowed by `y`
|
2015-09-01 10:53:56 -05:00
|
|
|
|
2015-08-25 16:48:22 -05:00
|
|
|
let o = Some(1u8);
|
2015-09-01 10:53:56 -05:00
|
|
|
|
2015-08-25 16:48:22 -05:00
|
|
|
if let Some(p) = o { assert_eq!(1, p); }
|
|
|
|
match o {
|
|
|
|
Some(p) => p, // no error, because the p above is in its own scope
|
|
|
|
None => 0,
|
|
|
|
};
|
2015-09-08 04:50:04 -05:00
|
|
|
|
|
|
|
match (x, o) {
|
|
|
|
(1, Some(a)) | (a, Some(1)) => (), // no error though `a` appears twice
|
|
|
|
_ => (),
|
|
|
|
}
|
2015-08-21 10:11:34 -05:00
|
|
|
}
|