rust/tests/ui/toplevel_ref_arg.rs

27 lines
503 B
Rust
Raw Normal View History

// run-rustfix
#![warn(clippy::toplevel_ref_arg)]
fn main() {
2018-12-09 16:26:16 -06:00
// Closures should not warn
let y = |ref x| println!("{:?}", x);
y(1u8);
2019-09-25 20:53:39 -05:00
let ref _x = 1;
2017-02-08 07:58:07 -06:00
2019-09-25 20:53:39 -05:00
let ref _y: (&_, u8) = (&1, 2);
2017-02-08 07:58:07 -06:00
2019-09-25 20:53:39 -05:00
let ref _z = 1 + 2;
2017-02-08 07:58:07 -06:00
2019-09-25 20:53:39 -05:00
let ref mut _z = 1 + 2;
2017-02-08 07:58:07 -06:00
2019-01-30 19:15:29 -06:00
let (ref x, _) = (1, 2); // ok, not top level
2018-12-09 16:26:16 -06:00
println!("The answer is {}.", x);
2019-09-25 20:53:39 -05:00
let ref _x = vec![1, 2, 3];
// Make sure that allowing the lint works
#[allow(clippy::toplevel_ref_arg)]
2019-09-25 20:53:39 -05:00
let ref mut _x = 1_234_543;
}