rust-clippy/tests/ui/auxiliary/doc_unsafe_macros.rs
2022-11-10 10:09:33 +01:00

16 lines
269 B
Rust

#[macro_export]
macro_rules! undocd_unsafe {
() => {
pub unsafe fn oy_vey() {
unimplemented!();
}
};
}
#[macro_export]
macro_rules! undocd_safe {
() => {
pub fn vey_oy() {
unimplemented!();
}
};
}