summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-98260.stderr
blob: 08a1d17e244a8d945c4c80aadf5cf9282e1864a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0121]: the placeholder `_` is not allowed within types on item signatures for return types
  --> $DIR/issue-98260.rs:3:27
   |
LL |     fn a(aa: B) -> Result<_, B> {
   |                    -------^----
   |                    |      |
   |                    |      not allowed in type signatures
   |                    help: replace with the correct return type: `Result<(), B>`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0121`.