2023-03-15 23:02:56 -05:00
|
|
|
error[E0121]: the placeholder `_` is not allowed within types on item signatures for functions
|
|
|
|
--> $DIR/bad-infer-in-trait-impl.rs:6:15
|
|
|
|
|
|
|
|
|
LL | fn bar(s: _) {}
|
|
|
|
| ^ not allowed in type signatures
|
|
|
|
|
|
|
|
|
help: use type parameters instead
|
|
|
|
|
|
|
|
|
LL | fn bar<T>(s: T) {}
|
|
|
|
| +++ ~
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-03-15 23:02:56 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0121`.
|