Files
rust/tests/ui/deref_addrof_macro.rs
Guillaume Gomez f666fd6417 Update UI tests
2025-02-15 13:38:16 +01:00

15 lines
205 B
Rust

//@ check-pass
//@aux-build:proc_macros.rs
#![warn(clippy::deref_addrof)]
extern crate proc_macros;
#[proc_macros::inline_macros]
fn f() -> i32 {
// should be fine
*inline!(&$1)
}
fn main() {}