Don't parse intra doc links as syntax trees

This commit is contained in:
Lukas Wirth 2024-01-26 19:45:46 +01:00
parent 5a343415e8
commit 6cf7b5f8d7
8 changed files with 33 additions and 55 deletions

View file

@ -59,12 +59,3 @@ macro_rules! impl_from {
)*
}
}
#[macro_export]
macro_rules! assert_eq_size {
($($ty:ty,)+ $val:expr $(,)?) => {
const _: () = {
$(core::mem::transmute::<[u8; $val], $ty>;)+
};
};
}