2019-04-16 13:26:55 -05:00
|
|
|
// run-rustfix
|
|
|
|
|
2016-11-22 12:22:37 -06:00
|
|
|
fn get_number() -> usize {
|
|
|
|
10
|
|
|
|
}
|
|
|
|
|
2018-12-09 16:26:16 -06:00
|
|
|
fn get_reference(n: &usize) -> &usize {
|
2016-11-22 12:22:37 -06:00
|
|
|
n
|
|
|
|
}
|
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
#[allow(clippy::many_single_char_names, clippy::double_parens)]
|
2019-04-16 13:26:55 -05:00
|
|
|
#[allow(unused_variables, unused_parens)]
|
2018-07-28 10:34:52 -05:00
|
|
|
#[warn(clippy::deref_addrof)]
|
2016-11-22 12:22:37 -06:00
|
|
|
fn main() {
|
|
|
|
let a = 10;
|
|
|
|
let aref = &a;
|
|
|
|
|
|
|
|
let b = *&a;
|
2017-02-08 07:58:07 -06:00
|
|
|
|
2016-11-22 12:22:37 -06:00
|
|
|
let b = *&get_number();
|
2017-02-08 07:58:07 -06:00
|
|
|
|
2016-11-22 12:22:37 -06:00
|
|
|
let b = *get_reference(&a);
|
|
|
|
|
2018-12-09 16:26:16 -06:00
|
|
|
let bytes: Vec<usize> = vec![1, 2, 3, 4];
|
2016-11-22 12:22:37 -06:00
|
|
|
let b = *&bytes[1..2][0];
|
2017-02-08 07:58:07 -06:00
|
|
|
|
2016-11-25 08:54:07 -06:00
|
|
|
//This produces a suggestion of 'let b = (a);' which
|
|
|
|
//will trigger the 'unused_parens' lint
|
|
|
|
let b = *&(a);
|
2017-02-08 07:58:07 -06:00
|
|
|
|
2016-11-22 12:22:37 -06:00
|
|
|
let b = *(&a);
|
2017-02-08 07:58:07 -06:00
|
|
|
|
2018-12-10 17:59:59 -06:00
|
|
|
#[rustfmt::skip]
|
|
|
|
let b = *((&a));
|
2017-02-08 07:58:07 -06:00
|
|
|
|
2016-11-22 12:22:37 -06:00
|
|
|
let b = *&&a;
|
2017-02-08 07:58:07 -06:00
|
|
|
|
2016-11-22 12:22:37 -06:00
|
|
|
let b = **&aref;
|
|
|
|
}
|