Auto merge of #110391 - est31:remove_allow_unused, r=fee1-dead

Remove unused unused_macros

The macro is always used
This commit is contained in:
bors 2023-04-16 08:39:32 +00:00
commit 18109d5032

View File

@ -39,7 +39,6 @@ macro_rules! assert_biteq {
// ToString uses the default fmt::Display impl without special concerns, and bypasses other parts
// of the formatting infrastructure, which makes it ideal for testing here.
#[allow(unused_macros)]
macro_rules! roundtrip {
($f:expr => $t:ty) => {
($f).to_string().parse::<$t>().unwrap()