summary refs log tree commit diff
path: root/src/test/ui/parser/issue-33413.stderr
blob: ac320f095a2389444aec93e1103982504279d178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: expected parameter name, found `*`
  --> $DIR/issue-33413.rs:4:10
   |
LL |     fn f(*, a: u8) -> u8 {}
   |          ^ expected parameter name

error[E0308]: mismatched types
  --> $DIR/issue-33413.rs:4:23
   |
LL |     fn f(*, a: u8) -> u8 {}
   |        -              ^^ expected `u8`, found `()`
   |        |
   |        implicitly returns `()` as its body has no tail or `return` expression

error: aborting due to 2 previous errors

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