]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeck/issue-98260.stderr
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[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`.