]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/deref_addrof_macro.rs
bump version to 1.75.0+dfsg1-1~bpo12+pve1
[rustc.git] / src / tools / clippy / tests / ui / deref_addrof_macro.rs
CommitLineData
781aab86 1//@aux-build:proc_macros.rs
353b0b11
FG
2
3#![warn(clippy::deref_addrof)]
4
5extern crate proc_macros;
f20569fa 6
353b0b11
FG
7#[proc_macros::inline_macros]
8fn f() -> i32 {
9 // should be fine
10 *inline!(&$1)
f20569fa
XL
11}
12
13fn main() {}