2023-03-16 19:29:01 +00:00
|
|
|
error[E0053]: method `foo` has an incompatible generic parameter for trait `Foo`
|
2023-09-13 16:04:42 +00:00
|
|
|
--> $DIR/generics-mismatch.rs:10:18
|
2023-03-16 19:29:01 +00:00
|
|
|
|
|
|
|
|
LL | trait Foo {
|
|
|
|
| ---
|
|
|
|
LL | async fn foo<T>();
|
|
|
|
| - expected type parameter
|
|
|
|
...
|
|
|
|
LL | impl Foo for () {
|
|
|
|
| ---------------
|
|
|
|
LL | async fn foo<const N: usize>() {}
|
|
|
|
| ^^^^^^^^^^^^^^ found const parameter of type `usize`
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-03-16 19:29:01 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0053`.
|