]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/auxiliary/doc_unsafe_macros.rs
Merge commit '7b73b60faca71d01d900e49831fcb84553e93019' into sync-rustfmt
[rust.git] / src / tools / clippy / tests / ui / auxiliary / doc_unsafe_macros.rs
1 #[macro_export]
2 macro_rules! undocd_unsafe {
3     () => {
4         pub unsafe fn oy_vey() {
5             unimplemented!();
6         }
7     };
8 }