]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/return-cycle.stderr
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / suggestions / return-cycle.stderr
1 error[E0121]: the placeholder `_` is not allowed within types on item signatures for return types
2   --> $DIR/return-cycle.rs:6:17
3    |
4 LL |     fn new() -> _ {
5    |                 ^
6    |                 |
7    |                 not allowed in type signatures
8    |                 help: replace with the correct return type: `Token<()>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0121`.