2023-06-23 22:00:08 -05:00
|
|
|
error[E0049]: method `bar` has 0 type parameters but its trait declaration has 1 type parameter
|
2023-10-24 10:27:02 -05:00
|
|
|
--> $DIR/trait-more-generics-than-impl.rs:8:11
|
2023-06-23 22:00:08 -05:00
|
|
|
|
|
|
|
|
LL | fn bar<T>() -> impl Sized;
|
|
|
|
| - expected 1 type parameter
|
|
|
|
...
|
|
|
|
LL | fn bar() -> impl Sized {}
|
|
|
|
| ^ found 0 type parameters
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-06-23 22:00:08 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0049`.
|