rust/src/test/ui/parser/issue-33413.stderr

18 lines
512 B
Plaintext
Raw Normal View History

error: expected parameter name, found `*`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-33413.rs:4:10
2018-10-20 15:36:17 -05:00
|
LL | fn f(*, a: u8) -> u8 {}
| ^ expected parameter name
2018-10-20 15:36:17 -05:00
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
2018-10-20 15:36:17 -05:00
For more information about this error, try `rustc --explain E0308`.