From 076b7303abfb37d7b736a59772d357dfc0705d08 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 9 Dec 2021 04:25:44 -0800 Subject: [PATCH] Touch up PR 184 --- tests/test.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test.rs b/tests/test.rs index a19dcbe..2bca1fc 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -1382,7 +1382,9 @@ pub mod issue169 { pub mod issue183 { #![deny(clippy::shadow_same)] - #[async_trait::async_trait] + use async_trait::async_trait; + + #[async_trait] trait Foo { async fn foo(_n: i32) {} }