1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 22:51:07 +01:00

chore: allow unused trait in test

This commit is contained in:
Rob Ede 2024-02-19 12:32:06 +00:00
parent 0f71fd5a7a
commit 850f6c0491
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933

View File

@ -103,6 +103,7 @@ mod tests {
#[allow(dead_code)] #[allow(dead_code)]
fn require_sync<T: Sync>(_t: &T) {} fn require_sync<T: Sync>(_t: &T) {}
#[allow(unused)]
trait AmbiguousIfUnpin<A> { trait AmbiguousIfUnpin<A> {
fn some_item(&self) {} fn some_item(&self) {}
} }