summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/toplevel_ref_arg_non_rustfix.rs
blob: 1a493fbce0ef31d8f16b481dd29c441e2d67e05c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// aux-build:macro_rules.rs

#![warn(clippy::toplevel_ref_arg)]
#![allow(unused)]

#[macro_use]
extern crate macro_rules;

fn the_answer(ref mut x: u8) {
    *x = 42;
}

macro_rules! gen_function {
    () => {
        fn fun_example(ref _x: usize) {}
    };
}

fn main() {
    let mut x = 0;
    the_answer(x);

    // lint in macro
    #[allow(unused)]
    {
        gen_function!();
    }

    // do not lint in external macro
    {
        ref_arg_function!();
    }
}