We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e29e385 commit 5ba252cCopy full SHA for 5ba252c
tests/test.rs
@@ -121,12 +121,12 @@ mod issue1 {
121
use async_trait::async_trait;
122
123
#[async_trait]
124
- trait Trait {
+ trait Issue1 {
125
async fn f<U>(&self);
126
}
127
128
129
- impl<T: Sync> Trait for Vec<T> {
+ impl<T: Sync> Issue1 for Vec<T> {
130
async fn f<U>(&self) {}
131
132
@@ -154,7 +154,7 @@ mod issue9 {
154
155
156
157
- pub trait Issue3: Sized + Send {
+ pub trait Issue9: Sized + Send {
158
async fn f(_x: Self) {}
159
160
0 commit comments