E2014 Parse Errors

missing-parameter-type

parameter missing type annotation

When this occurs

`do foo(x)` without type

Example error message

error[E2014]: parameter 'x' is missing a type

How to fix

Add a type annotation to your parameter: `do foo(x int)` not `do foo(x)`.

Related errors