]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/auxiliary/doc_unsafe_macros.rs
Merge commit 'f4850f7292efa33759b4f7f9b7621268979e9914' 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 }
9 #[macro_export]
10 macro_rules! undocd_safe {
11     () => {
12         pub fn vey_oy() {
13             unimplemented!();
14         }
15     };
16 }