@@ -359,8 +359,8 @@ pub mod issue23 {
359359// https://github.com/dtolnay/async-trait/issues/25
360360#[ cfg( async_trait_nightly_testing) ]
361361pub mod issue25{
362- use crate :: executor;
363362use super :: async_trait;
363+ use crate :: executor;
364364use std:: fmt:: { Display , Write } ;
365365
366366#[ async_trait]
@@ -503,8 +503,8 @@ pub mod issue44 {
503503
504504// https://github.com/dtolnay/async-trait/issues/45
505505pub mod issue45{
506- use crate :: executor;
507506use super :: async_trait;
507+ use crate :: executor;
508508use std:: fmt:: Debug ;
509509use std:: sync:: atomic:: { AtomicU64 , Ordering } ;
510510use std:: sync:: { Arc , Mutex } ;
@@ -716,8 +716,8 @@ pub mod issue53 {
716716// https://github.com/dtolnay/async-trait/issues/57
717717#[ cfg( async_trait_nightly_testing) ]
718718pub mod issue57{
719- use crate :: executor;
720719use super :: async_trait;
720+ use crate :: executor;
721721
722722#[ async_trait]
723723trait Trait {
@@ -1159,8 +1159,8 @@ pub mod issue134 {
11591159
11601160// https://github.com/dtolnay/async-trait/pull/125#pullrequestreview-491880881
11611161pub mod drop_order{
1162- use crate :: executor;
11631162use super :: async_trait;
1163+ use crate :: executor;
11641164use std:: sync:: atomic:: { AtomicBool , Ordering } ;
11651165
11661166struct Flagger < ' a > ( & ' a AtomicBool ) ;