]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-33413.stderr
d1e09ce16554a100cea04a4c91e95ec0d5cce31b
[rust.git] / src / test / ui / parser / 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    = note:   expected type `u8`
16            found unit type `()`
17
18 error: aborting due to 2 previous errors
19
20 For more information about this error, try `rustc --explain E0308`.