From 9282fb7655475b3e464cee6c580e7ceb5ac75b95 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Mon, 12 Feb 2024 11:28:39 -0800 Subject: [PATCH] Suppress `clippy::test_attr_in_doctest` lint --- wayland-backend/tests/rs_sys_impls.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wayland-backend/tests/rs_sys_impls.rs b/wayland-backend/tests/rs_sys_impls.rs index 45d384cbb5d..234c2c01ef6 100644 --- a/wayland-backend/tests/rs_sys_impls.rs +++ b/wayland-backend/tests/rs_sys_impls.rs @@ -1,3 +1,5 @@ +#![allow(clippy::test_attr_in_doctest)] + //! Tests to ensure the rust and sys types implement the same traits. /// A macro used to assert a type defined in both the rust and sys implementations of wayland-backend