From 3b90e7d1edbc985e7625b4b5097c664e99ee7dc9 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 4 Feb 2023 15:29:10 -0800 Subject: [PATCH] Ignore items_after_statements pedantic clippy lint --- tests/test.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/test.rs b/tests/test.rs index 8f5624db..5a8e93fe 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -1,4 +1,8 @@ -#![allow(clippy::assertions_on_result_states, clippy::non_ascii_literal)] +#![allow( + clippy::assertions_on_result_states, + clippy::items_after_statements, + clippy::non_ascii_literal +)] use proc_macro2::{Ident, Literal, Punct, Spacing, Span, TokenStream, TokenTree}; use std::panic;