summary refs log tree commit diff
path: root/src/test/ui/parser/issue-33413.stderr
blob: 7e5c348e36ceac5073e18730a04b066186b5f148 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
   |
   = note: expected type `u8`
              found type `()`

error: aborting due to 2 previous errors

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