summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type-alias-impl-trait/issue-77179.stderr
blob: 053546e4b9285e29d0175fc6dde04fd1a43f1427 (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-77179.rs:7:22
   |
LL | fn test() -> Pointer<_> {
   |              --------^-
   |              |       |
   |              |       not allowed in type signatures
   |              help: replace with the correct return type: `Pointer<i32>`

error: aborting due to previous error

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