]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/auxiliary/doc_unsafe_macros.rs
Rollup merge of #94057 - lcnr:simplify_type-uwu, r=nikomatsakis
[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 }