]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeck/issue-98260.stderr
Rollup merge of #97249 - GuillaumeGomez:details-summary-fixes, r=notriddle
[rust.git] / src / test / ui / typeck / issue-98260.stderr
1 error[E0121]: the placeholder `_` is not allowed within types on item signatures for return types
2   --> $DIR/issue-98260.rs:3:27
3    |
4 LL |     fn a(aa: B) -> Result<_, B> {
5    |                    -------^----
6    |                    |      |
7    |                    |      not allowed in type signatures
8    |                    help: replace with the correct return type: `Result<(), B>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0121`.