diff --git a/test_suite/tests/test_annotations.rs b/test_suite/tests/test_annotations.rs index 9e62e0a3..db4c58f1 100644 --- a/test_suite/tests/test_annotations.rs +++ b/test_suite/tests/test_annotations.rs @@ -1,6 +1,8 @@ #![allow( clippy::cast_lossless, clippy::from_over_into, + // Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422 + clippy::nonstandard_macro_braces, clippy::trivially_copy_pass_by_ref )] diff --git a/test_suite/tests/test_gen.rs b/test_suite/tests/test_gen.rs index bea97f1b..f0a7fe1b 100644 --- a/test_suite/tests/test_gen.rs +++ b/test_suite/tests/test_gen.rs @@ -6,6 +6,8 @@ #![allow( unknown_lints, mixed_script_confusables, + // Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422 + clippy::nonstandard_macro_braces, clippy::ptr_arg, clippy::trivially_copy_pass_by_ref )]