]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/auxiliary/doc_unsafe_macros.rs
Merge commit '2b2190cb5667cdd276a24ef8b9f3692209c54a89' into clippyup
[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 }