mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
27 lines
455 B
Rust
27 lines
455 B
Rust
//@aux-build:proc_macros.rs
|
|
|
|
#![warn(clippy::toplevel_ref_arg)]
|
|
#![allow(unused)]
|
|
|
|
extern crate proc_macros;
|
|
use proc_macros::{external, inline_macros};
|
|
|
|
fn the_answer(ref mut x: u8) {
|
|
*x = 42;
|
|
}
|
|
|
|
#[inline_macros]
|
|
fn main() {
|
|
let mut x = 0;
|
|
the_answer(x);
|
|
|
|
// lint in macro
|
|
inline! {
|
|
fn fun_example(ref _x: usize) {}
|
|
}
|
|
|
|
// do not lint in external macro
|
|
external! {
|
|
fn fun_example2(ref _x: usize) {}
|
|
}
|
|
}
|