blob: 957dd542f5a996e40f90caa0ddb05a8986f220b4 [file] [log] [blame]
//@aux-build:proc_macros.rs
#![warn(clippy::toplevel_ref_arg)]
#![allow(clippy::uninlined_format_args, unused, clippy::useless_vec)]
extern crate proc_macros;
use proc_macros::{external, inline_macros};
#[inline_macros]
fn main() {
// Closures should not warn
let y = |ref x| println!("{:?}", x);
y(1u8);
let ref _x = 1;
//~^ toplevel_ref_arg
let ref _y: (&_, u8) = (&1, 2);
//~^ toplevel_ref_arg
let ref _z = 1 + 2;
//~^ toplevel_ref_arg
let ref mut _z = 1 + 2;
//~^ toplevel_ref_arg
let (ref x, _) = (1, 2); // ok, not top level
println!("The answer is {}.", x);
let ref _x = vec![1, 2, 3];
//~^ toplevel_ref_arg
// Make sure that allowing the lint works
#[allow(clippy::toplevel_ref_arg)]
let ref mut _x = 1_234_543;
// ok
for ref _x in 0..10 {}
// lint in macro
inline!(let ref _y = 42;);
//~^ toplevel_ref_arg
// do not lint in external macro
external!(let ref _y = 42;);
fn f(#[allow(clippy::toplevel_ref_arg)] ref x: i32) {}
}