Sign in
fuchsia
/
third_party
/
rust
/
5a2fceefd312ec027bdeaa89ebefbe4c33d94de1
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
deref_addrof_macro.rs
blob: 452ccd173a16abd778072cbbe50639197dea799e [
file
]
//@ 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
()
{}