]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/auxiliary/doc_unsafe_macros.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[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 }