2023-08-24 14:32:12 -05:00
|
|
|
//@aux-build:proc_macros.rs
|
2023-03-24 08:04:35 -05:00
|
|
|
|
|
|
|
#![warn(clippy::deref_addrof)]
|
|
|
|
|
|
|
|
extern crate proc_macros;
|
2019-09-02 09:26:04 -05:00
|
|
|
|
2023-03-24 08:04:35 -05:00
|
|
|
#[proc_macros::inline_macros]
|
|
|
|
fn f() -> i32 {
|
|
|
|
// should be fine
|
|
|
|
*inline!(&$1)
|
2019-09-02 09:26:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|