]> git.lizzy.rs Git - rust.git/blob - src/test/ui/did_you_mean/replace-impl-infer-ty-from-trait.stderr
Auto merge of #93718 - thomcc:used-macho, r=pnkfelix
[rust.git] / src / test / ui / did_you_mean / replace-impl-infer-ty-from-trait.stderr
1 error[E0121]: the placeholder `_` is not allowed within types on item signatures for functions
2   --> $DIR/replace-impl-infer-ty-from-trait.rs:9:15
3    |
4 LL |     fn bar(i: _, t: _, s: _) -> _ {
5    |               ^     ^     ^     ^ not allowed in type signatures
6    |               |     |     |
7    |               |     |     not allowed in type signatures
8    |               |     not allowed in type signatures
9    |               not allowed in type signatures
10    |
11 help: try replacing `_` with the types in the corresponding trait method signature
12    |
13 LL |     fn bar(i: i32, t: usize, s: &()) -> (usize, i32) {
14    |               ~~~     ~~~~~     ~~~     ~~~~~~~~~~~~
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0121`.