Sign in
android
/
toolchain
/
rustc
/
977026a81a6cc1c304420586c1bb6527b72b4303
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
auxiliary
/
doc_unsafe_macros.rs
blob: 3d917e3dc75e9211a5ca7f5a52de06d569792acb [
file
] [
log
] [
blame
]
#[
macro_export
]
macro_rules
!
undocd_unsafe
{
()
=>
{
pub
unsafe
fn
oy_vey
()
{
unimplemented
!();
}
};
}
#[
macro_export
]
macro_rules
!
undocd_safe
{
()
=>
{
pub
fn
vey_oy
()
{
unimplemented
!();
}
};
}