]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issues/issue-33413.stderr
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / parser / issues / issue-33413.stderr
1 error: expected parameter name, found `*`
2   --> $DIR/issue-33413.rs:4:10
3    |
4 LL |     fn f(*, a: u8) -> u8 {}
5    |          ^ expected parameter name
6
7 error[E0308]: mismatched types
8   --> $DIR/issue-33413.rs:4:23
9    |
10 LL |     fn f(*, a: u8) -> u8 {}
11    |        -              ^^ expected `u8`, found `()`
12    |        |
13    |        implicitly returns `()` as its body has no tail or `return` expression
14    |
15 help: consider returning the local binding `a`
16    |
17 LL |     fn f(*, a: u8) -> u8 { a }
18    |                            +
19
20 error: aborting due to 2 previous errors
21
22 For more information about this error, try `rustc --explain E0308`.